Skip to content

Commit b0c7f31

Browse files
authored
ci: test example models on all platforms (#2105)
We previously only tested the example models on Linux. We have recently seen some platform-specific behavior differences in whose consideration it seems wise to test all platforms.
1 parent 3045d44 commit b0c7f31

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/ci.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,13 @@ jobs:
317317
pixi run autotest -m "$markers" -k "$filters"
318318
319319
- name: Install executables
320-
if: runner.os == 'Linux'
321320
uses: modflowpy/install-modflow-action@v1
322321

323322
- name: Test examples
324-
if: runner.os == 'Linux'
325323
working-directory: modflow6
326324
shell: pixi run bash -e {0}
327325
run: |
328-
cp bin/mf6 ~/.local/bin/modflow/
329-
cp bin/libmf6.so ~/.local/bin/modflow/
326+
cp -R bin/* ~/.local/bin/modflow/
330327
cd ../modflow6-examples/autotest
331328
pytest -v -n auto test_scripts.py
332329
@@ -477,8 +474,7 @@ jobs:
477474
working-directory: modflow6
478475
shell: pixi run bash -e {0}
479476
run: |
480-
cp bin/mf6 ~/.local/bin/modflow/
481-
cp bin/libmf6.so ~/.local/bin/modflow/
477+
cp -R bin/* ~/.local/bin/modflow/
482478
cd ../modflow6-examples/autotest
483479
pytest -v -n auto test_scripts.py
484480

0 commit comments

Comments
 (0)