Merge pull request #7 from oapi-codegen/chore/iris #27
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: Ensure generated files are up-to-date | |
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: | |
# strategy is used to allow us to pin to a specific Go version, or use the version available in our `go.mod` | |
strategy: ['go-version'] | |
version: [1.21] | |
include: | |
# pick up the Go version from the `go.mod` | |
- strategy: 'go-version-file' | |
version: 'go.mod' | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
${{ matrix.strategy }}: ${{ matrix.version }} | |
- name: Run `make generate` | |
run: make generate | |
- name: Check for no untracked files | |
run: git status && git diff-index --quiet HEAD -- |