Skip to content

Commit

Permalink
Fix formatting (why didn't the Actions plugin find this?)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Oct 19, 2023
1 parent 0b84fed commit 78d8a72
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,13 @@ jobs:
run: cmake --build . --target install --config ${{ matrix.build-type }}

- name: Test (Unix)
if: matrix.os != 'windows-latest'
run: |
if: matrix.os != 'windows-latest'
run: |
test -f $CONDA_PREFIX/include/bmi.h
test -f $CONDA_PREFIX/lib/pkgconfig/bmic.pc
- name: Test (Windows)
if: matrix.os == 'windows-latest'
working-directory: ${{ github.workspace }}/build
if: matrix.os == 'windows-latest'
run: |
if ( -not ( Test-Path -Path $env:CONDA_PREFIX\Library\include\bmi.h ) ){ exit 1 }
if ( -not ( Test-Path -Path $env:CONDA_PREFIX\Library\lib\pkgconfig\bmic.pc ) ){ exit 1 }
if ( -not ( Test-Path -Path $env:CONDA_PREFIX\Library\include\bmi.h ) ){ exit 1 }
if ( -not ( Test-Path -Path $env:CONDA_PREFIX\Library\lib\pkgconfig\bmic.pc ) ){ exit 1 }

0 comments on commit 78d8a72

Please sign in to comment.