-
Notifications
You must be signed in to change notification settings - Fork 23
48 lines (43 loc) · 1.14 KB
/
test.yaml
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
name: test-workflow
on:
# When any branch in the repository is pushed
push:
# When a pull request is created
pull_request:
# When manually triggered to run
workflow_dispatch:
jobs:
lint:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
name: Lint ${{ matrix.python-version }}
runs-on: 'ubuntu-20.04'
container: python:${{ matrix.python-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Lint code
run: |
pip install ruff==0.5.0
ruff check
ruff format --check
ruff check --select I
# Run tests
test:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
# Do not cancel any jobs when a single job fails
fail-fast: false
name: Python ${{ matrix.python-version }}
runs-on: 'ubuntu-20.04'
container: python:${{ matrix.python-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
CFLAGS="-O0" pip install -r requirements_tests.txt
- name: Run tests
run: pytest