Skip to content

Commit

Permalink
FIX: remove double quotes in github actions (#1062)
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Nov 14, 2022
1 parent 76c41e0 commit 3ac01cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
sphinx-build -b html docs/ docs/_build/html --keep-going -w warnings.txt
- name: Check that there are no unexpected Sphinx warnings
if: matrix.python-version == "3.10"
if: matrix.python-version == '3.10'
run: python tests/check_warnings.py

- name: Run the tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.9"
- name: Build package
run: |
python -m pip install -U pip build
Expand Down

0 comments on commit 3ac01cf

Please sign in to comment.