Bump github.com/alecthomas/kong-toml from 0.1.0 to 0.2.0 #46
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
# SPDX-FileCopyrightText: Stefan Tatschner | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
on: [push, pull_request] | |
name: "Tests" | |
permissions: {} | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install tools | |
run: | | |
echo "deb http://deb.debian.org/debian bookworm-backports main" > /etc/apt/sources.list.d/backports.list | |
apt-get update | |
apt-get install -y bats jq zstd git util-linux make | |
apt-get install -y -t bookworm-backports golang-go | |
go env -w GOTOOLCHAIN=go1.21.5+auto | |
- name: build | |
run: | | |
make penrun | |
- name: run bats | |
run: | | |
make test |