Skip to content

Commit

Permalink
Merge branch 'master' into feat/schemaContextLib
Browse files Browse the repository at this point in the history
  • Loading branch information
kratsg authored Mar 23, 2022
2 parents ecb3669 + 36e0d67 commit f42ae42
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,16 @@ jobs:
if: failure() && github.event_name == 'workflow_dispatch'
uses: mxschmitt/action-tmate@v3

# Report coverage for oldest and newest Python tested to deal with version differences
- name: Report core project coverage with Codecov
if: github.event_name != 'schedule' && matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'
if: >-
github.event_name != 'schedule' &&
(matrix.python-version == '3.7' || matrix.python-version == '3.10') &&
matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v2
with:
files: ./coverage.xml
flags: unittests
flags: unittests-${{ matrix.python-version }}

- name: Test Contrib module with pytest
run: |
Expand Down

0 comments on commit f42ae42

Please sign in to comment.