Skip to content

Commit

Permalink
CI: syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
n-wbrown committed Oct 17, 2023
1 parent 603ffe6 commit 1fd2ffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cookiecutter-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
matrix:
config_file: [ default_config.yaml, complex_config.yaml]
python_version: [ 3.6, 3.7, 3.8, 3.9, 3.10]
python_version: [ "3.6", "3.7", "3.8", "3.9", "3.10"]


steps:
Expand All @@ -51,7 +51,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python_version }}"
python-version: ${{ matrix.python_version }}

- name: Upgrade pip
run: |
Expand Down

0 comments on commit 1fd2ffd

Please sign in to comment.