Merge remote-tracking branch 'upstream/master' into sync-0804 #28
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: Go | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: fmt | |
run: IS_CONTAINER=yes make fmt | |
- name: Build | |
run: make all | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: test pkg | |
run: make test-pkg | |
- name: test controllers on opensfhit | |
run: CLUSTER_TYPE=openshift make test-controllers | |
- name: test bindata/scripts | |
run: make test-bindata-scripts | |
golangci: | |
name: Golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | |
version: v1.46 | |
test-coverage: | |
name: test-coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: test pkg | |
run: make test-pkg | |
- name: test controllers on opensfhit | |
run: CLUSTER_TYPE=openshift make test-controllers | |
- name: merge test coverage | |
run: make merge-test-coverage | |
- name: Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: lcov.out |