diff options
author | Earl Warren <contact@earl-warren.org> | 2025-01-17 08:55:01 +0100 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2025-01-17 08:55:01 +0100 |
commit | 701e3ee92bf1473a9f03c2a186e7df703a8796a9 (patch) | |
tree | 289678a20d027ee3693fd1cdd789014cf5aec57c | |
parent | Merge pull request 'fix: do not ignore the config container.options when star... (diff) | |
download | forgejo-act-701e3ee92bf1473a9f03c2a186e7df703a8796a9.tar.xz forgejo-act-701e3ee92bf1473a9f03c2a186e7df703a8796a9.zip |
chore(ci): do not -short all tests
-rw-r--r-- | .forgejo/workflows/test.yml | 4 |
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 |