From 78d8a7211dac1f8c22d9ad7266f24fab31db9881 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Thu, 19 Oct 2023 15:06:46 -0600 Subject: [PATCH] Fix formatting (why didn't the Actions plugin find this?) --- .github/workflows/test.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aece109..85b8107 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }