Skip to content

Commit e322a0d

Browse files
Add older Python versions (#867)
1 parent f04d8f9 commit e322a0d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/pull_request.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,11 @@ jobs:
104104
receptorctl:
105105
name: receptorctl (Python ${{ matrix.python-version }})
106106
needs: receptor
107-
runs-on: ubuntu-latest
108107
strategy:
109108
matrix:
110-
python-version: ["3.8", "3.9", "3.10", "3.11"]
109+
os-version: ["ubuntu-22.04"]
110+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
111+
runs-on: "${{ matrix.os-version }}"
111112
steps:
112113
- name: Checkout
113114
uses: actions/checkout@v4
@@ -126,7 +127,10 @@ jobs:
126127
- name: Set up Python
127128
uses: actions/setup-python@v4
128129
with:
129-
python-version: '${{ matrix.python-version }}'
130+
python-version: "${{ matrix.python-version }}"
131+
132+
- name: Upgrade pip
133+
run: pip install --upgrade pip
130134

131135
- name: Install tox
132136
run: pip install tox

0 commit comments

Comments
 (0)