We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0327e54 commit 3b83a35Copy full SHA for 3b83a35
.github/workflows/gh-tests-ci.yml
@@ -26,13 +26,13 @@ jobs:
26
- name: Test with pytest
27
run: |
28
pytest --cache-clear --cov=./azure --cov-report=xml --cov-branch tests
29
- - name: Test with pytest and ujson
30
- if: ${{ matrix.python-version }} > 3.6
+ - if: matrix.python_version != 3.6
+ name: Test with pytest and ujson
31
32
python -m pip install .[ujson]
33
pytest --cache-clear tests
34
- - name: Codecov
35
- if: ${{ matrix.python-version }} == 3.9
+ - if: matrix.python_version == 3.9
+ name: Codecov
36
uses: codecov/codecov-action@v2
37
with:
38
file: ./coverage.xml
0 commit comments