Skip to content

Commit 110ef87

Browse files
committed
Run Py3.7
1 parent 299fa8a commit 110ef87

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/run_tox.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,21 @@ env:
1111
DJANGO_SETTINGS_MODULE: test_app.test_settings
1212

1313
jobs:
14-
tests:
14+
tests3.7:
15+
runs-on: ubuntu-22.04
16+
steps:
17+
- uses: actions/checkout@v6
18+
- uses: actions/setup-python@v5
19+
with:
20+
python-version: 3.7
21+
- name: Install tox
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install tox
25+
- name: Run tox
26+
run: tox
27+
28+
tests3.8-14:
1529
runs-on: ubuntu-latest
1630
steps:
1731
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)