-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (83 loc) · 2.26 KB
/
push.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
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
77
78
79
80
81
82
83
84
85
86
87
88
# SPDX-FileCopyrightText: 2024 Alec Delaney, for Adafruit Industries
#
# SPDX-License-Identifier: MIT
name: Build CI
on: ["push", "pull_request"]
permissions: read-all
jobs:
build:
name: Run build CI
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
py-version: [
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
]
os: [
"ubuntu-latest",
"windows-latest",
"macos-latest",
]
exclude:
- os: windows-latest
py-version: "3.9"
- os: windows-latest
py-version: "3.10"
- os: windows-latest
py-version: "3.11"
- os: windows-latest
py-version: "3.12"
- os: macos-latest
py-version: "3.9"
- os: macos-latest
py-version: "3.10"
- os: macos-latest
py-version: "3.11"
- os: macos-latest
py-version: "3.12"
steps:
- name: Setup Python 3.x
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py-version }}
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run pre-commit via make
run: |
make check
- name: Test packaging
run: |
python -m build
- name: Test documentation
run: |
make docs
- name: Prepare tests
run : |
make test-prep
- name: Run tests
run: |
make test-run
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Clean up after tests
run: |
make test-clean
- name: Create coverage.py XML report
run: |
coverage xml -o coverage_${{ matrix.os }}_${{ matrix.py-version }}.xml
- name: Upload coverage report to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
file: coverage_${{ matrix.os }}_${{ matrix.py-version }}.xml
flags: "${{ matrix.os }}-py-${{ matrix.py-version }}"