Skip to content

Commit b5c12ae

Browse files
committed
Update condition checking in ci-testing
1 parent ab52265 commit b5c12ae

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
pip install .[dev]
2727
2828
- name: Run the test suite \w coverage
29-
if: ${{ matrix.python-version }} == "3.11"
29+
if: contains(matrix.python-version, '3.12')
3030
run: pytest --cov=aiidalab_alc --cov-report xml:coverage.xml
3131

3232
- name: Run the test suite without coverage
33-
if: ${{ matrix.python-version }} != "3.11"
33+
if: ${{ matrix.python-version }} != '3.12'
3434
run: pytest
3535

3636
- name: Report coverage to Coveralls
37-
if: ${{ matrix.python-version }} == "3.11"
37+
if: contains(matrix.python-version, '3.12')
3838
uses: coverallsapp/github-action@v2
3939
with:
4040
file: coverage.xml

0 commit comments

Comments
 (0)