Skip to content

Bump github.com/alecthomas/kong from 1.3.0 to 1.4.0 (#127) #348

Bump github.com/alecthomas/kong from 1.3.0 to 1.4.0 (#127)

Bump github.com/alecthomas/kong from 1.3.0 to 1.4.0 (#127) #348

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.21", "1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: make test-nodocker
- if: matrix.go == '1.23'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}