Skip to content

Commit

Permalink
Add later python versions (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
thom-at-redhat authored Oct 4, 2023
1 parent 45d7df5 commit 6740b44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup up python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: '3.11'

- name: Install tox
run: pip install tox
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -126,7 +126,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: '${{ matrix.python-version }}'

- name: Install tox
run: pip install tox
Expand All @@ -145,7 +145,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: '3.11'

- name: Install python dependencies
run: pip install build
Expand Down

0 comments on commit 6740b44

Please sign in to comment.