-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (54 loc) · 1.47 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
# SPDX-FileCopyrightText: 2024 Alec Delaney, for Adafruit Industries
#
# SPDX-License-Identifier: MIT
name: Build CI
on: ["push", "pull_request"]
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
]
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: Run pytest via coverage.py
run: |
make test
- 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.py-version }}.xml
flags: "${{ matrix.os }}-py-${{ matrix.py-version }}"
- name: Test packaging
run: |
python -m build