2022-05-16 11:02:12 +00:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize]
|
2023-07-26 12:48:05 +00:00
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
2023-09-05 09:58:56 +00:00
|
|
|
push:
|
|
|
|
# Always run on push to main. The build cache can only be reused
|
|
|
|
# if it was saved by a run from the repository's default branch.
|
|
|
|
# The run result will be identical to that from the merge queue
|
|
|
|
# because the commit is identical, yet we need to perform it to
|
|
|
|
# seed the build cache.
|
|
|
|
branches:
|
|
|
|
- main
|
2022-05-16 11:02:12 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
2022-11-28 10:34:25 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- macos-latest
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
|
|
|
|
2022-05-16 11:02:12 +00:00
|
|
|
steps:
|
2022-09-07 09:55:59 +00:00
|
|
|
- name: Checkout repository and submodules
|
2023-09-05 08:27:18 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-05-16 11:02:12 +00:00
|
|
|
|
|
|
|
- name: Unshallow
|
|
|
|
run: git fetch --prune --unshallow
|
|
|
|
|
2022-09-08 09:21:00 +00:00
|
|
|
- name: Setup Go
|
2023-08-30 14:57:34 +00:00
|
|
|
uses: actions/setup-go@v4
|
2022-05-16 11:02:12 +00:00
|
|
|
with:
|
2023-08-15 13:50:40 +00:00
|
|
|
go-version: 1.21.0
|
2022-05-16 11:02:12 +00:00
|
|
|
|
2023-09-21 12:21:39 +00:00
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.9'
|
|
|
|
|
2022-05-16 11:02:12 +00:00
|
|
|
- name: Set go env
|
|
|
|
run: |
|
|
|
|
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
|
|
|
|
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
2022-09-07 18:08:42 +00:00
|
|
|
go install gotest.tools/gotestsum@latest
|
2022-09-07 09:55:59 +00:00
|
|
|
go install honnef.co/go/tools/cmd/staticcheck@latest
|
2022-05-16 11:02:12 +00:00
|
|
|
|
|
|
|
- name: Pull external libraries
|
2023-07-26 09:02:17 +00:00
|
|
|
run: |
|
|
|
|
make vendor
|
2023-07-26 10:07:26 +00:00
|
|
|
pip3 install wheel
|
2022-05-16 11:02:12 +00:00
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: make test
|
2022-09-07 13:15:23 +00:00
|
|
|
|
|
|
|
fmt:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-09-08 09:21:00 +00:00
|
|
|
- name: Checkout
|
2023-09-05 08:27:18 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-09-07 13:15:23 +00:00
|
|
|
|
2022-09-08 09:21:00 +00:00
|
|
|
- name: Setup Go
|
2023-08-30 14:57:34 +00:00
|
|
|
uses: actions/setup-go@v4
|
2022-09-07 13:15:23 +00:00
|
|
|
with:
|
2023-08-30 14:57:34 +00:00
|
|
|
go-version: 1.21.0
|
2022-09-07 13:15:23 +00:00
|
|
|
|
2022-09-08 09:21:00 +00:00
|
|
|
# No need to download cached dependencies when running gofmt.
|
|
|
|
cache: false
|
|
|
|
|
2022-09-07 13:15:23 +00:00
|
|
|
- name: Run gofmt
|
|
|
|
run: |
|
|
|
|
# -l: list files that were reformatted
|
|
|
|
# -w: write back formatted files to disk
|
|
|
|
gofmt -l -w ./
|
|
|
|
|
2022-12-22 08:33:46 +00:00
|
|
|
- name: Run go mod tidy
|
|
|
|
run: |
|
|
|
|
go mod tidy
|
|
|
|
|
2022-09-07 13:15:23 +00:00
|
|
|
- name: Fail on differences
|
|
|
|
run: |
|
|
|
|
# Exit with status code 1 if there are differences (i.e. unformatted files)
|
|
|
|
git diff --exit-code
|