Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
workflow python versions should be quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeifer committed May 31, 2022
1 parent b223614 commit b3c9b74
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ jobs:
build:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit b3c9b74

Please sign in to comment.