Skip to content

Commit

Permalink
ci: wrap python version in quotes due to GitHub bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jyecusch committed Jun 23, 2023
1 parent 9b5cff8 commit bfb774b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
uses: actions/[email protected]
with:
fetch-depth: 0 # needed to retrieve most recent tag
- name: Set up Python 3.10
- name: Set up Python '3.10'
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: '3.10'
- name: Build
run: make build
- name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10]
python-version: ['3.10']

steps:
- name: Checkout
Expand Down

0 comments on commit bfb774b

Please sign in to comment.