-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add goproto and govulncheck tools * ci: add go tests for submodules * ci: add missing setup-environment stage * fix: install porto on usage
- Loading branch information
Showing
7 changed files
with
270 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,217 @@ | ||
name: build-and-test | ||
on: | ||
push: | ||
branches: [ main ] | ||
tags: | ||
merge_group: | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
setup-environment: | ||
timeout-minutes: 30 | ||
runs-on: ubuntu-latest | ||
if: ${{ github.actor != 'dependabot[bot]' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21.10" | ||
cache: false | ||
- name: Cache Go | ||
id: go-cache | ||
timeout-minutes: 5 | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/bin | ||
~/go/pkg/mod | ||
key: go-cache-${{ runner.os }}-${{ hashFiles('**/go.sum') }} | ||
- name: Install dependencies | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make -j2 gomoddownload | ||
- name: Install Tools | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make install-tools | ||
lint-matrix: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
test: | ||
- windows | ||
- linux | ||
group: | ||
- all | ||
runs-on: ubuntu-latest | ||
needs: [setup-environment] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21.10" | ||
cache: false | ||
- name: Cache Go | ||
id: go-cache | ||
timeout-minutes: 5 | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/bin | ||
~/go/pkg/mod | ||
key: go-cache-${{ runner.os }}-${{ hashFiles('**/go.sum') }} | ||
- name: Install dependencies | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make -j2 gomoddownload | ||
- name: Install Tools | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make install-tools | ||
- name: Cache Lint Build | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/go-build | ||
key: go-lint-build-${{ matrix.group }}-${{ runner.os }}-${{ hashFiles('**/go.sum') }} | ||
- name: Lint | ||
run: GOOS=${{ matrix.os }} GOARCH=amd64 make -j2 golint GROUP=${{ matrix.group }} | ||
lint: | ||
if: ${{ github.actor != 'dependabot[bot]' && always() }} | ||
runs-on: ubuntu-latest | ||
needs: [setup-environment, lint-matrix] | ||
steps: | ||
- name: Print result | ||
run: echo ${{ needs.lint-matrix.result }} | ||
- name: Interpret result | ||
run: | | ||
if [[ success == ${{ needs.lint-matrix.result }} ]] | ||
then | ||
echo "All matrix jobs passed!" | ||
else | ||
echo "One or more matrix jobs failed." | ||
false | ||
fi | ||
govulncheck: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
group: | ||
- all | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21.10" | ||
cache: false | ||
- name: Cache Go | ||
id: go-cache | ||
timeout-minutes: 5 | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/bin | ||
~/go/pkg/mod | ||
key: go-cache-${{ runner.os }}-${{ hashFiles('**/go.sum') }} | ||
- name: Install Tools | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make install-tools | ||
- name: Run `govulncheck` | ||
run: make -j2 gogovulncheck GROUP=${{ matrix.group }} | ||
checks: | ||
runs-on: ubuntu-latest | ||
needs: [setup-environment] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21.10" | ||
cache: false | ||
- name: Cache Go | ||
id: go-cache | ||
timeout-minutes: 5 | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/bin | ||
~/go/pkg/mod | ||
key: go-cache-${{ runner.os }}-${{ hashFiles('**/go.sum') }} | ||
- name: Install dependencies | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make -j2 gomoddownload | ||
- name: Install Tools | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make install-tools | ||
- name: Porto | ||
run: | | ||
make -j2 goporto | ||
git diff --exit-code || (echo 'Porto links are out of date, please run "make goporto" and commit the changes in this PR.' && exit 1) | ||
- name: Check for go mod dependency changes | ||
run: | | ||
make gotidy | ||
git diff --exit-code || (echo 'go.mod/go.sum deps changes detected, please run "make gotidy" and commit the changes in this PR.' && exit 1) | ||
- name: CodeGen | ||
run: | | ||
make -j2 generate | ||
if [[ -n $(git status -s) ]]; then | ||
echo 'Generated code is out of date, please run "make generate" and commit the changes in this PR.' | ||
exit 1 | ||
fi | ||
unittest-matrix: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: ["1.22.3", "1.21.10"] # 1.20 is interpreted as 1.2 without quotes | ||
runner: [ubuntu-latest] | ||
group: | ||
- all | ||
runs-on: ${{ matrix.runner }} | ||
needs: [setup-environment] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
cache: false | ||
- name: Cache Go | ||
id: go-cache | ||
timeout-minutes: 5 | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/bin | ||
~/go/pkg/mod | ||
key: go-cache-${{ runner.os }}-${{ hashFiles('**/go.sum') }} | ||
- name: Install dependencies | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make -j2 gomoddownload | ||
- name: Install Tools | ||
if: steps.go-cache.outputs.cache-hit != 'true' | ||
run: make install-tools | ||
- name: Cache Test Build | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/go-build | ||
key: go-test-build-${{ runner.os }}-${{ matrix.go-version }}-${{ matrix.runner }}-${{ hashFiles('**/go.sum') }} | ||
- name: Run Unit Tests | ||
if: startsWith( matrix.go-version, '1.21' ) != true | ||
run: make gotest GROUP=${{ matrix.group }} | ||
unittest: | ||
if: ${{ github.actor != 'dependabot[bot]' && always() }} | ||
runs-on: ubuntu-latest | ||
needs: [setup-environment, unittest-matrix] | ||
steps: | ||
- name: Print result | ||
run: echo ${{ needs.unittest-matrix.result }} | ||
- name: Interpret result | ||
run: | | ||
if [[ success == ${{ needs.unittest-matrix.result }} ]] | ||
then | ||
echo "All matrix jobs passed!" | ||
else | ||
echo "One or more matrix jobs failed." | ||
false | ||
fi |
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
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
File renamed without changes.
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
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
Oops, something went wrong.