Skip to content

Commit

Permalink
Add older Python versions (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
thom-at-redhat authored Oct 11, 2023
1 parent f04d8f9 commit e322a0d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,11 @@ jobs:
receptorctl:
name: receptorctl (Python ${{ matrix.python-version }})
needs: receptor
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os-version: ["ubuntu-22.04"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: "${{ matrix.os-version }}"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -126,7 +127,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
python-version: "${{ matrix.python-version }}"

- name: Upgrade pip
run: pip install --upgrade pip

- name: Install tox
run: pip install tox
Expand Down

0 comments on commit e322a0d

Please sign in to comment.