Skip to content

Commit

Permalink
.github/workflows: Fix duplicate key in testing CI
Browse files Browse the repository at this point in the history
This has been broken and not running tests since d580bd3 (just a few
days ago).
  • Loading branch information
ejona86 committed Apr 13, 2023
1 parent e12baed commit 9af202f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Test Reports (JRE ${{ matrix.jre }})
path: ./*/build/reports/tests/**
path: ./*/*/build/reports/tests/**
path: |
./*/build/reports/tests/**
./*/*/build/reports/tests/**
retention-days: 14
- name: Check for modified codegen
run: test -z "$(git status --porcelain)" || (git status && echo Error Working directory is not clean. Forget to commit generated files? && false)
Expand Down

0 comments on commit 9af202f

Please sign in to comment.