Merge pull request #199 from fao89/rbump #919
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Golang lint, vet and unit test pipeline | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: github (govet, golint and gotest) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.x | |
- name: Checkout project code | |
uses: actions/checkout@v3 | |
- name: Checkout openstack-k8s-operators-ci project | |
uses: actions/checkout@v3 | |
with: | |
repository: openstack-k8s-operators/openstack-k8s-operators-ci | |
path: ./openstack-k8s-operators-ci | |
- name: Run govet.sh | |
run: ./openstack-k8s-operators-ci/test-runner/govet.sh | |
- name: Run golint.sh | |
run: ./openstack-k8s-operators-ci/test-runner/golint.sh | |
- name: Run test | |
run: make test | |
golangci: | |
name: github (golangci) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.x | |
- name: Checkout project code | |
uses: actions/checkout@v3 | |
- name: Run golangci lint | |
uses: golangci/golangci-lint-action@v2 | |
with: | |
version: latest | |
args: --timeout 5m |