chore(deps): update module github.com/go-test/deep to v1.1.1 (#48) #334
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.21', '1.x' ] | |
name: With Go ${{ matrix.go }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Get dependencies | |
run: go get -v -t -d ./... | |
- name: Test | |
run: go test -race ./... | |
static-checks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.x' ] | |
name: Static checks | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Go Vet | |
run: go vet ./... | |
- name: Goimports | |
run: | | |
go run golang.org/x/tools/cmd/goimports@latest -w . | |
git diff --quiet || (echo 'goimports requires code cleanup:' ; git diff ; exit 1) | |
- name: Go Generate | |
run: | | |
go generate ./... | |
# Bug in swag results in Flaky swagger docs - see https://github.com/swaggo/swag/issues/721 | |
# git diff --quiet || (echo 'generated go files are not up to date, check go generate, go.sum and go.mod' ; git diff ; exit 1) | |
git diff --quiet -- . ":(exclude)docs" || (echo 'generated go files are not up to date, check go generate, go.sum and go.mod' ; git diff -- . ":(exclude)docs"; exit 1) | |
integration-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.x' ] | |
name: Integration | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Get dependencies | |
run: go get -v -t -d ./... | |
- name: Generate GraphQL | |
run: make generate-integrationtest-graphql | |
- name: Test | |
run: make integrationtest |