Skip to content

Commit

Permalink
Fail tests if files not found
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Oct 5, 2024
1 parent 1b9cf08 commit 12d83c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ jobs:
- name: Test
working-directory: ${{ github.workspace }}/build
run: |
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\libbmigiplf.dll.a
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\bin\libbmigiplf.dll
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\libbmigiplf.dll.a ) ){ exit 1 }
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\bin\libbmigiplf.dll ) ){ exit 1 }
ctest

0 comments on commit 12d83c5

Please sign in to comment.