Skip to content

Commit a07c869

Browse files
committed
update python matrix
1 parent bc3869c commit a07c869

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010

1111
jobs:
1212
lint:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Repository checkout
1616
uses: actions/checkout@v3
1717

1818
- name: Set up Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: "3.8"
21+
python-version: "3.7"
2222

2323
- name: Install dependencies
2424
run: |
@@ -29,10 +29,11 @@ jobs:
2929
tox -e lint
3030
3131
test:
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-22.04
3333
strategy:
3434
matrix:
3535
python-version:
36+
- "3.7"
3637
- "3.8"
3738
- "3.9"
3839
- "3.10"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
envlist = py3, lint, imports
33

44
[testenv:py3]
5-
commands = coverage run -m unittest discover {posargs}
5+
commands = coverage run setup.py test {posargs}
66
sitepackages = False
77
deps = coverage
88

0 commit comments

Comments
 (0)