diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-11 21:00:38 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-11 21:00:38 +0200 |
| commit | a2be547dfd704d101a601ac803529c0625cc43ea (patch) | |
| tree | 5fccff4403b0eb56182b2ae34088faac670685db /.github | |
| parent | 8a08edbdc7776eef7dd541f66c8eb56322753fa1 (diff) | |
Merge exclude paths
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/cover.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cover.yml b/.github/workflows/cover.yml index 9d0fcfeb4..5d61296d5 100644 --- a/.github/workflows/cover.yml +++ b/.github/workflows/cover.yml @@ -40,17 +40,17 @@ jobs: run: | ./odin build tests/core/normal.odin -build-mode:test -debug -file -all-packages -vet -strict-style -disallow-do -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true -target:linux_amd64 mkdir kcov-out - kcov --exclude-path=tests --exclude-path=/usr kcov-out ./normal.bin . + kcov --exclude-path=tests,/usr kcov-out ./normal.bin . - name: Optimized Core library tests run: | ./odin build tests/core/speed.odin -build-mode:test -debug -file -all-packages -vet -strict-style -disallow-do -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true -target:linux_amd64 - kcov --exclude-path=tests --exclude-path=/usr kcov-out ./speed.bin . + kcov --exclude-path=tests,/usr kcov-out ./speed.bin . - name: Internals tests run: | ./odin build tests/internal -build-mode:test -debug -all-packages -vet -strict-style -disallow-do -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true -target:linux_amd64 - kcov --exclude-path=tests --exclude-path=/usr kcov-out ./internal . + kcov --exclude-path=tests,/usr kcov-out ./internal . - uses: codecov/codecov-action@v5 with: |