update module #2
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: Build project | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
# perform matrix testing to give us an earlier insight into issues with different versions of supported major versions of Go | |
matrix: | |
version: | |
- "1.21" | |
- "1.22" | |
- "1.23" | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.version }} | |
- name: Test | |
run: make test | |
env: | |
# A combination of our GitHub Actions setup, with the Go toolchain, leads to inconsistencies in calling `go env`, in particular with Go 1.21, where having (the default) `GOTOOLCHAIN=auto` results in build failures | |
GOTOOLCHAIN: local | |
- name: Build | |
run: go build ./cmd/oapi-codegen | |
results: | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
name: Check results | |
needs: [build] | |
steps: | |
- run: | | |
result="${{ needs.build.result }}" | |
if [[ $result == "success" || $result == "skipped" ]]; then | |
exit 0 | |
else | |
exit 1 | |
fi |