This commit is contained in:
Daniel Hougaard
2024-04-18 15:13:58 +02:00
parent 22c589e2cf
commit ba42aca069

22
.github/workflows/run-cli-tests.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Go CLI Tests
on: [push] # Test
jobs:
test:
defaults:
run:
working-directory: ./cli
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21.x"
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: TEST_MODE=true go test -v -count=1 ./test