-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (47 loc) · 1.07 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Run tests
strategy:
matrix:
python-version:
- 3.11.0
- 3.10.0
- 3.9.0
- 3.8.0
- 3.7.1
- 3.6.7
runs-on: ubuntu-20.04
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: '${{ matrix.python-version }}'
- name: "Install python dependencies"
run: |
pip install ".[test]"
- name: "Run tests"
run: |
pytest test.py --cov
- uses: codecov/codecov-action@v3
lint:
name: Run linting
runs-on: ubuntu-20.04
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: 3.8.0
- name: "Install python dependencies"
run: |
pip install ".[test,lint]"
- run: |
pre-commit install
pre-commit run --all-files