Skip to content

Commit

Permalink
Add CI test to confirm if existing directory cause issue
Browse files Browse the repository at this point in the history
Refer #22
  • Loading branch information
lambdalisue committed Oct 10, 2023
1 parent 5957f3c commit caf61cd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,22 @@ jobs:
test -f azblob-download-artifact/World.txt
test -f azblob-download-artifact/path/to/nested/Hello.txt
- name: Basic usage (again)
uses: ./
with:
connection-string: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
name: 'azblob-download-artifact'

- name: Confirm
shell: bash
run: |
find ./azblob-download-artifact
echo "-----------------------------------"
test -d azblob-download-artifact
test -f azblob-download-artifact/Hello.txt
test -f azblob-download-artifact/World.txt
test -f azblob-download-artifact/path/to/nested/Hello.txt
- name: Download to a specific path
uses: ./
with:
Expand Down

0 comments on commit caf61cd

Please sign in to comment.