Skip to content

Commit 95ec76e

Browse files
committed
Make mac do testing as well
1 parent d3eac98 commit 95ec76e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
mpi:
2020
- mpich
2121
py:
22-
# - "3.7"
23-
# - "3.8"
24-
# - "3.9"
2522
- "3.10"
2623
- "3.11"
2724
- "3.12"
@@ -64,15 +61,18 @@ jobs:
6461
- if: matrix.mpi == 'mpich' && startsWith(matrix.os, 'ubuntu')
6562
run: pytest tests/ --junitxml=junit/test-results.xml --cov=$(python -c "import site; print(site.getsitepackages()[0]+'/shenfun')") --cov-report=xml --cov-report=html
6663

67-
- if: matrix.mpi == 'mpich' && startsWith(matrix.os, 'ubuntu')
64+
- if: matrix.mpi == 'mpich' && startsWith(matrix.os, 'macos')
65+
run: pytest tests/
66+
67+
- if: matrix.mpi == 'mpich' && startsWith(matrix.os, 'ubuntu') && matrix.py == '3.11'
6868
uses: codecov/codecov-action@v4
6969
with:
7070
files: coverage.xml
7171
name: ${{ matrix.os }}-${{ matrix.mpi }}-${{ matrix.py }}
7272
env:
7373
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
7474

75-
- if: matrix.mpi == 'mpich' && startsWith(matrix.os, 'ubuntu')
75+
- if: matrix.mpi == 'mpich' && startsWith(matrix.os, 'ubuntu') && matrix.py == '3.11'
7676
uses: codacy/codacy-coverage-reporter-action@v1
7777
with:
7878
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}

0 commit comments

Comments
 (0)