File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 37
37
uses : conda-incubator/setup-miniconda@v3
38
38
with :
39
39
auto-update-conda : true
40
- python-version : env.PYTHON_VERSION
40
+ python-version : ${{ env.PYTHON_VERSION }}
41
41
- name : Install Base Env
42
42
run : |
43
43
conda info
@@ -66,15 +66,15 @@ jobs:
66
66
pytest --cov-config=.coveragerc --cov-report=xml --cov=pymatsolver -s -v
67
67
68
68
- name : Test Documentation
69
- if : ${{ matrix.os == 'ubuntu-latest' }} and ${{matrix.python-major-version == 3}} and ${{ matrix.python-minor-version == 11 }}
69
+ if : ${{ matrix.os == 'ubuntu-latest' }} and ${{ env.PYTHON_VERSION == "3.11" }}
70
70
run : |
71
71
pip install -r requirements_docs.txt
72
72
cd docs
73
73
make html
74
74
cd ..
75
75
76
76
- name : Upload coverage
77
- if : ${{ matrix.os == 'ubuntu-latest' }} and and ${{matrix.python-major-version == 3}} and ${{ matrix.python-minor-version == 11 }}
77
+ if : ${{ matrix.os == 'ubuntu-latest' }} and ${{ env.PYTHON_VERSION == "3.11" }}
78
78
uses : codecov/codecov-action@v4
79
79
with :
80
80
verbose : true # optional (default = false)
You can’t perform that action at this time.
0 commit comments