Skip to content

Commit 86805ba

Browse files
committed
chore(CI): fix missing then in test-and-publish.yaml
1 parent a2884c1 commit 86805ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-and-publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169
path: ./build/docs/html/
170170
- name: Set cores to get stored in /cores
171171
run: |
172-
if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]];
172+
if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]]; then
173173
# TODO (Caleb Aikens) figure out how to get Windows core dumps
174174
sudo mkdir /cores
175175
sudo chmod 777 /cores
@@ -178,15 +178,15 @@ jobs:
178178
fi
179179
- name: Run Python tests (pytest)
180180
run: |
181-
if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]];
181+
if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]]; then
182182
# TODO (Caleb Aikens) figure out how to get Windows core dumps
183183
ulimit -c unlimited
184184
fi
185185
poetry run python -m pip install --force-reinstall --verbose ./dist/*
186186
poetry run python -m pytest tests/python
187187
- name: Run JS tests (peter-jr)
188188
run: |
189-
if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]];
189+
if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]]; then
190190
# TODO (Caleb Aikens) figure out how to get Windows core dumps
191191
ulimit -c unlimited
192192
fi

0 commit comments

Comments
 (0)