Skip to content

Commit 9af202f

Browse files
committed
.github/workflows: Fix duplicate key in testing CI
This has been broken and not running tests since d580bd3 (just a few days ago).
1 parent e12baed commit 9af202f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/testing.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ jobs:
5858
uses: actions/upload-artifact@v3
5959
with:
6060
name: Test Reports (JRE ${{ matrix.jre }})
61-
path: ./*/build/reports/tests/**
62-
path: ./*/*/build/reports/tests/**
61+
path: |
62+
./*/build/reports/tests/**
63+
./*/*/build/reports/tests/**
6364
retention-days: 14
6465
- name: Check for modified codegen
6566
run: test -z "$(git status --porcelain)" || (git status && echo Error Working directory is not clean. Forget to commit generated files? && false)

0 commit comments

Comments
 (0)