Skip to content

Commit 1c0c52d

Browse files
committed
Fix github action
1 parent 988050d commit 1c0c52d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,31 +57,31 @@ jobs:
5757
python -c "import deepxde"
5858
5959
- name: Test build with Jax
60-
if: matrix.os != "windows-latest" # jaxlib is not available on windows
60+
if: matrix.os != 'windows-latest' # jaxlib is not available on windows
6161
env:
6262
DDE_BACKEND: jax
6363
run: |
6464
python -m pip install jax flax optax
6565
python -c "import deepxde"
6666
6767
- name: Test build with Paddle (MacOS)
68-
if: matrix.os == "macos-latest"
68+
if: matrix.os == 'macos-latest'
6969
run: |
7070
python -m pip install paddlepaddle==0.0.0 -f https://www.paddlepaddle.org.cn/whl/mac/cpu-noavx/develop.html
7171
python -c "import deepxde"
7272
env:
7373
DDE_BACKEND: paddle
7474

7575
- name: Test build with Paddle (Linux)
76-
if: matrix.os == "ubuntu-latest"
76+
if: matrix.os == 'ubuntu-latest'
7777
run: |
7878
python -m pip install paddlepaddle==0.0.0 -f https://www.paddlepaddle.org.cn/whl/linux/cpu-mkl/develop.html
7979
python -c "import deepxde"
8080
env:
8181
DDE_BACKEND: paddle
8282

8383
- name: Test build with Paddle (Windows)
84-
if: matrix.os == "windows-latest"
84+
if: matrix.os == 'windows-latest'
8585
run: |
8686
python -m pip install paddlepaddle==0.0.0 -f https://www.paddlepaddle.org.cn/whl/windows/cpu-mkl-avx/develop.html
8787
python -c "import deepxde"

0 commit comments

Comments
 (0)