Skip to content

Commit

Permalink
change the upload conditions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapriot committed Sep 26, 2024
1 parent 735c70d commit 405ea7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ jobs:
pytest --cov-config=.coveragerc --cov-report=xml --cov=pymatsolver -s -v
- name: Test Documentation
if: ${{ (matrix.os == 'ubuntu-latest') && (env.PYTHON_VERSION == '3.11') }}
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == '3.11') }}
run: |
pip install -r requirements_docs.txt
cd docs
make html
cd ..
- name: Upload coverage
if: ${{ (matrix.os == 'ubuntu-latest') && (env.PYTHON_VERSION == '3.11') }}
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == '3.11') }}
uses: codecov/codecov-action@v4
with:
verbose: true # optional (default = false)
Expand Down

0 comments on commit 405ea7d

Please sign in to comment.