diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 28d8b90..39b347b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -118,21 +118,6 @@ jobs: - run: ls -lR some - - name: Verify successful download - run: | - $fileA = "some/other/pathgz/Artifact-A" - $fileB = "some/other/pathgz/Artifact-B" - if(!(Test-Path -path $fileA) -or !(Test-Path -path $fileB)) - { - Write-Error "Expected files do not exist" - } - if(!((Get-Content $fileA) -ceq "Lorem ipsum dolor sit amet") -or !((Get-Content $fileB) -ceq "Hello world from file B")) - { - Write-Error "File contents of downloaded artifacts are incorrect" - } - shell: pwsh - - # Test downloading a single artifact - name: Download artifact A uses: ./