Update VERSION to v0.15.0 (#98) #302
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: Go | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| jobs: | |
| test-integration: | |
| name: Integration test | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go using version from go.mod | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Run integration tests | |
| run: | | |
| make docker-test-integration | |
| tidy: | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go using version from go.mod | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Check tidiness | |
| run: | | |
| ./ci/check-tidy.sh | |
| golangci: | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go using version from go.mod | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Run code linters | |
| run: | | |
| make golangci |