File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1919 strategy :
2020 fail-fast : false
2121 matrix :
22- python-version : ['3.9', '3.10', '3.11', '3.12.1 ']
22+ python-version : ['3.9', '3.10', '3.11', '3.12']
2323 backend : ['tensorflow', 'jax', 'pytorch', 'paddle']
2424
2525 steps :
2828 uses : actions/setup-python@v3
2929 with :
3030 python-version : ${{ matrix.python-version }}
31- - name : Install dependencies
32- run : |
33- python -m pip install --upgrade pip
34- python -m pip install flake8 pytest pytest-cov
35- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
36- python -m pip install git+https://github.com/lululxvi/deepxde.git
3731 - name : Install tensorflow
3832 if : ${{matrix.backend == 'tensorflow'}}
3933 run : |
5044 if : ${{matrix.backend == 'paddle'}}
5145 run : |
5246 python -m pip install paddlepaddle
47+ - name : Install dependencies
48+ run : |
49+ python -m pip install --upgrade pip
50+ python -m pip install flake8 pytest pytest-cov
51+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
52+ python -m pip install git+https://github.com/lululxvi/deepxde.git
5353 - name : Lint with flake8
5454 run : |
5555 # stop the build if there are Python syntax errors or undefined names
You can’t perform that action at this time.
0 commit comments