Skip to content

Bump github.com/alecthomas/kong from 0.8.1 to 0.9.0 (#197) #592

Bump github.com/alecthomas/kong from 0.8.1 to 0.9.0 (#197)

Bump github.com/alecthomas/kong from 0.8.1 to 0.9.0 (#197) #592

Workflow file for this run

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