From bbface31c8fc6391dea63f00987dff8763ca5456 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Thu, 26 Dec 2024 08:00:08 -0600 Subject: [PATCH 1/2] ci: fix reference to scripts --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index dc2573e..f13bf1e 100644 --- a/Justfile +++ b/Justfile @@ -33,7 +33,7 @@ vet: # apply golangci-lint linters on source tree [group('lint')] lint: vet - $GOBIN/golangci-lint run --config .github/workflows/scripts/golangci.yaml + $GOBIN/golangci-lint run --config {{scripts}}/golangci.yaml # show host system information [group('build')] From d8fab4fed27af5937e764307b4bf47ef8236e1ba Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Thu, 26 Dec 2024 08:00:33 -0600 Subject: [PATCH 2/2] ci: add timeout to tests --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fe0f0af..3b849fc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,7 @@ jobs: copywrite --config .github/workflows/scripts/copywrite.hcl \ headers --spdx "BSD-3-Clause" --plan run-tests: + timeout-minutes: 5 runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4