Skip to content

chore(deps): update module flamingo.me/flamingo/v3 to v3.11.0 (#57) #357

chore(deps): update module flamingo.me/flamingo/v3 to v3.11.0 (#57)

chore(deps): update module flamingo.me/flamingo/v3 to v3.11.0 (#57) #357

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.22', '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