Skip to content

Commit

Permalink
Add a couple of extra tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-unlikelyai committed Feb 12, 2023
1 parent e57365f commit 10bcdac
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/download.yml
Expand Up @@ -140,6 +140,36 @@ jobs:
dry_run: true
- name: Test
run: test ${{ steps.download.outputs.dry_run }} == false
download-with-check-artifacts:
runs-on: ubuntu-latest
needs: wait
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download
uses: ./
with:
workflow: upload.yml
name: artifact
path: artifact
check_artifacts: true
- name: Test
run: cat artifact/sha | grep $GITHUB_SHA
download-with-search-artifacts:
runs-on: ubuntu-latest
needs: wait
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download
uses: ./
with:
workflow: upload.yml
name: artifact
path: artifact
search_artifacts: true
- name: Test
run: cat artifact/sha | grep $GITHUB_SHA
download-many-search-artifacts:
runs-on: ubuntu-latest
needs: wait
Expand Down

0 comments on commit 10bcdac

Please sign in to comment.