Skip to content

Commit

Permalink
Try using \n escapes with setup-python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ajjackson committed Dec 18, 2024
1 parent 7581607 commit bae1f54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
config:
- os: ubuntu-latest
if: true
python-versions: ${{((github.event_name == 'workflow_dispatch') && '[''3.10'', ''3.11'', ''3.12'']' || '[''3.10'', ''3.12'']')}}
python-versions: ${{((github.event_name == 'workflow_dispatch') && '3.10\n3.11\n3.12' || '3.10\n3.12'}}
tox-skip-env: ${{((github.event_name == 'workflow_dispatch') && '' || '.*?(py311).*?')}}
coverage: true
- os: windows-latest
if: true
python-versions: ${{((github.event_name == 'workflow_dispatch') && '[''3.10'', ''3.11'', ''3.12]' || '[''3.10'', ''3.12'']')}}
python-versions: ${{(github.event_name == 'workflow_dispatch') && '3.10\n3.11\n3.12' || '3.10\n3.12'}}
tox-skip-env: ${{((github.event_name == 'workflow_dispatch') && '' || '.*?(py311).*?')}}
coverage: false
- os: macos-latest
if: true
python-versions: ${{((github.event_name == 'workflow_dispatch') && '[''3.10'', ''3.11'', ''3.12'']' || '[''3.10'', ''3.12'']')}}
python-versions: ${{ (github.event_name == 'workflow_dispatch') && '3.10\n3.11\n3.12' || '3.10\n3.12' }}
tox-skip-env: ${{((github.event_name == 'workflow_dispatch') && '' || '.*?(py311).*?')}}
coverage: false
- os: macos-13
Expand Down

0 comments on commit bae1f54

Please sign in to comment.