-
Notifications
You must be signed in to change notification settings - Fork 1
86 lines (82 loc) · 2.45 KB
/
ci.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
77
78
79
80
81
82
83
84
85
86
---
name: CI
# yamllint disable-line rule:truthy
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
pre-commit:
name: pre-commit
runs-on: ubuntu-latest
env:
PRE_COMMIT_HOME: /tmp/pre-commit-cache
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/[email protected]
- name: 🏗 Set up uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: 🏗 Set pre-commit cache
uses: actions/cache@v4
with:
path: ${{ env.PRE_COMMIT_HOME }}
key: ${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml','.python-version') }}
- name: 🚀 Run pre-commit
env:
# Skipping branch check and pytest as pytest is run in a separate job
SKIP: no-commit-to-branch,pytest
run: uv run --frozen pre-commit run -a
pytest:
name: pytest
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.12", "3.13"]
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/[email protected]
- name: 🏗 Set up uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: 🏗 Set up Python ${{ matrix.python }}
run: uv python install ${{ matrix.python }}
- name: 🏗 Install dependencies
run: uv sync --frozen --dev
- name: 🚀 Run pytest
run: uv run pytest --cov go2rtc_client tests
- name: ⬆️ Upload coverage artifact
uses: actions/[email protected]
with:
include-hidden-files: true
name: coverage-${{ matrix.python }}
path: .coverage
coverage:
runs-on: ubuntu-latest
needs: pytest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/[email protected]
with:
fetch-depth: 0
- name: ⬇️ Download coverage data
uses: actions/[email protected]
- name: 🏗 Set up uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: 🏗 Install dependencies
run: uv sync --frozen --dev
- name: 🚀 Process coverage results
run: |
uv run --frozen coverage combine coverage*/.coverage*
uv run --frozen coverage xml -i
- name: ⬆️ Upload coverage report
uses: codecov/[email protected]
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}