Skip to content

bump Golang to 1.24 (#238) #683

bump Golang to 1.24 (#238)

bump Golang to 1.24 (#238) #683

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
go: ["1.22", "1.23", "1.24"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: make test-nodocker
- if: matrix.go == '1.24'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}