Merge pull request #7 from TykTechnologies/TT-10853-update-kin-openap… #14
This file contains hidden or 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: Unit & Integration Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| go: [ '1.19', '1.21' ] | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Set up Go ${{ matrix.go }} | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ^${{ matrix.go }} | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| go mod download | |
| - name: Run tests | |
| run: go test ./... -v | |
| - name: Run tests under race detector | |
| run: go test ./... -v --race | |
| lint: | |
| name: Linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.21 | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ^1.21 | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| - name: Run linters | |
| uses: golangci/golangci-lint-action@v3 | |
| with: | |
| version: v1.54.2 | |
| args: --timeout=3m | |
| ci: | |
| name: CI Success | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| needs: [test, lint] | |
| steps: | |
| - run: exit 1 | |
| if: >- | |
| ${{ | |
| contains(needs.*.result, 'failure') | |
| || contains(needs.*.result, 'cancelled') | |
| }} |