Skip to content

Commit 01ca08c

Browse files
committed
Use single quotation marks
1 parent 5b624c2 commit 01ca08c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pr_and_main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ jobs:
6464
python -m sphinx -j2 -v -b html -d doctrees docs html
6565
python -m sphinx -j2 -v -b doctest -d doctrees docs html
6666
find html -type f -name "*.ipynb" -not -path "html/_sources/*" -delete
67-
if: ${{ contains(matrix.variant.os, 'ubuntu') && matrix.python-version == "3.8" }}
67+
if: ${{ contains(matrix.variant.os, 'ubuntu') && matrix.python-version == '3.8' }}
6868
6969
- run: python -m sphinx -j4 -v -b linkcheck -d doctrees docs html
7070
# Linkcheck can be flaky. Avoid randomly breaking PR builds by running only on `main`
71-
if: ${{ contains(matrix.os, 'ubuntu') && matrix.python-version == "3.8" && github.ref == 'refs/heads/main' }}
71+
if: ${{ contains(matrix.os, 'ubuntu') && matrix.python-version == '3.8' && github.ref == 'refs/heads/main' }}
7272

7373
- uses: actions/upload-artifact@v2
74-
if: ${{ contains(matrix.os, 'ubuntu') && matrix.python-version == "3.8" }}
74+
if: ${{ contains(matrix.os, 'ubuntu') && matrix.python-version == '3.8' }}
7575
with:
7676
name: DocumentationHTML
7777
path: html/

0 commit comments

Comments
 (0)