summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEarl Warren <contact@earl-warren.org>2025-01-17 08:55:01 +0100
committerEarl Warren <contact@earl-warren.org>2025-01-17 08:55:01 +0100
commit701e3ee92bf1473a9f03c2a186e7df703a8796a9 (patch)
tree289678a20d027ee3693fd1cdd789014cf5aec57c
parentMerge pull request 'fix: do not ignore the config container.options when star... (diff)
downloadforgejo-act-701e3ee92bf1473a9f03c2a186e7df703a8796a9.tar.xz
forgejo-act-701e3ee92bf1473a9f03c2a186e7df703a8796a9.zip
chore(ci): do not -short all tests
-rw-r--r--.forgejo/workflows/test.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml
index 6cf9ddb..03c8fbe 100644
--- a/.forgejo/workflows/test.yml
+++ b/.forgejo/workflows/test.yml
@@ -59,7 +59,9 @@ jobs:
- name: build without docker
run: go build -tags WITHOUT_DOCKER -v ./...
- name: unit test
- run: go test -short -v ./pkg/container ./pkg/jobparser ./pkg/model ./pkg/exprparser
+ run: |
+ go test -short -v ./pkg/container
+ go test -v ./pkg/jobparser ./pkg/model ./pkg/exprparser
integration:
runs-on: lxc-bookworm