forked from kk7ds/chirp
-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (72 loc) · 1.82 KB
/
py3-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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Tests
on:
pull_request:
jobs:
style:
name: Style checks
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run tox
uses: ./.github/actions/py3-tox
with:
tox_target: style
unit:
name: Unit tests
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run tox
uses: ./.github/actions/py3-tox
with:
tox_target: unit
- name: Archive results
uses: actions/upload-artifact@v3
with:
name: unit_report
path: unit_report.html
driver:
name: Driver tests (Python 3.10)
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run tox
uses: ./.github/actions/py3-tox
with:
tox_target: fast-driver
driver-next:
name: Driver tests (Python 3.12)
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install python 3.12
uses: actions/setup-python@v5
id: pyinst
with:
python-version: '3.12'
- run: "sudo ln -s ${{ steps.pyinst.outputs.python-path }} /usr/local/bin/python3.12"
- run: "echo $PATH; ls -l /usr/local/bin"
- name: Run tox
uses: ./.github/actions/py3-tox
with:
tox_target: fast-driver
py_version: '3.12'
matrix:
name: Create support matrix
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run tox
uses: ./.github/actions/py3-tox
with:
tox_target: makesupported
- name: Archive support matrix
uses: actions/upload-artifact@v3
with:
name: support-matrix
path: model_support.html