Skip to content

Commit

Permalink
action: Use the repository dumping feature by default
Browse files Browse the repository at this point in the history
This uploads all test repository versions as a single GitHub artifact

Signed-off-by: Jussi Kukkonen <[email protected]>
  • Loading branch information
jku committed Jul 31, 2024
1 parent f4a590e commit 09a69c8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,13 @@ runs:
run: |
pytest -v "$TEST_LOCATION" \
--entrypoint "$ENTRYPOINT" \
--expected-failures "$EXPECTED_FAILURES"
--expected-failures "$EXPECTED_FAILURES" \
--repository-dump-dir ./test-repositories \
shell: bash

- name: Upload repository dump
if: ${{ !cancelled() }}
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
name: test-repositories
path: test-repositories

0 comments on commit 09a69c8

Please sign in to comment.