Skip to content

build(deps): bump github.com/alecthomas/kong from 0.8.1 to 0.9.0 #17

build(deps): bump github.com/alecthomas/kong from 0.8.1 to 0.9.0

build(deps): bump github.com/alecthomas/kong from 0.8.1 to 0.9.0 #17

Workflow file for this run

name: Go package
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
GOOS: ['linux']
GOARCH: ['amd64', 'arm64', 'arm']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.21.0'
- name: Build
env:
GOOS: ${{ matrix.GOOS }}
GOARCH: ${{ matrix.GOARCH }}
CGO_ENABLED: 0
run: go build -trimpath ./...