-
Notifications
You must be signed in to change notification settings - Fork 30
50 lines (38 loc) · 976 Bytes
/
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
49
50
name: Run Tests
on:
pull_request:
branches:
- "*"
jobs:
"build-310":
name: Build and Test on Python 3.10
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '>=3.10 <3.11'
- name: install deps
run: pip install -r requirements.txt pytest
- name: install module in editable mode
run: pip install -e .
- name: Tests
run: make test
build:
name: "Build on latest"
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version-file: 'pyproject.toml'
- name: install deps
run: pip install -r requirements.txt pytest
- name: install module in editable mode
run: pip install -e .
- name: Tests
run: make test