Skip to content

Commit

Permalink
multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolsson committed Sep 19, 2024
1 parent ac73417 commit adfb899
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
- name: Set up Python 3.9 and 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
python-version: |
3.9
3.11
- name: Tell Pants to use Python 3.11
run: |
Expand Down Expand Up @@ -51,10 +53,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
- name: Set up Python 3.9 and 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
python-version: |
3.9
3.11
- name: Tell Pants to use Python 3.11
run: |
Expand Down Expand Up @@ -90,10 +94,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
- name: Set up Python 3.9 and 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
python-version: |
3.9
3.11
- name: Initialize Pants
uses: pantsbuild/actions/init-pants@main
Expand All @@ -120,10 +126,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
- name: Set up Python 3.9 and 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
python-version: |
3.9
3.11
- name: Run linters on all targets
run: |
Expand All @@ -135,10 +143,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
- name: Set up Python 3.9 and 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
python-version: |
3.9
3.11
- name: Validate that tailor files are up to date
run: |
Expand Down

0 comments on commit adfb899

Please sign in to comment.