Skip to content

Commit

Permalink
* update ci files
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhughes-usgs committed Jun 11, 2024
1 parent b5083bf commit b3d9f73
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
os: [ubuntu-latest, macos-13, windows-2019]
defaults:
run:
shell: bash
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/pymake-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,16 @@ jobs:
if: runner.os == 'Windows'
run: choco install make

- name: Run pytest
- name: Run pytest on Linux and MacOS
if: runner.os != 'Windows'
run: |
pixi_task="autotest-base"
if [[ ${{ matrix.os }} == "windows-latest" ]]; then
pixi_task="autotest-Windows"
fi
pixi run "$pixi_task"
pixi run autotest-base
- name: test on Windows
if: runner.os == 'Windows'
shell: pwsh
run: |
pixi run autotest-Windows
- name: Print coverage report before upload
run: |
Expand Down

0 comments on commit b3d9f73

Please sign in to comment.