move to go 1.23 #509
Workflow file for this run
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: pull request checks | |
on: | |
pull_request: | |
branches: ['*'] | |
jobs: | |
build-test: | |
name: Build, lint, test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: ['1.23'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install make | |
run: sudo apt -y install make | |
- name: run build | |
run: make build && git diff --exit-code | |
- name: run unit tests | |
run: make test coverage-report | |
- name: check clean vendors | |
run: go mod vendor | |
- name: Report coverage | |
if: ${{ matrix.go == '1.23' }} | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: ./cover.out | |
flags: unittests | |
fail_ci_if_error: true | |
verbose: true |