-
Notifications
You must be signed in to change notification settings - Fork 79
47 lines (44 loc) · 1.07 KB
/
coverage.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
name: Coverage
on:
pull_request:
paths-ignore:
- "doc/**"
- ".ci/**"
- "*.rst"
push:
branches:
- main
- develop
- beta/*
paths-ignore:
- "doc/**"
- ".ci/**"
- "*.rst"
jobs:
coverage:
runs-on: ubuntu-latest
steps:
# install-qt-action also does setup-python
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
aqtversion: "==3.1.*"
version: "6.8.1"
host: "linux"
target: "desktop"
arch: "linux_gcc_64"
# - uses: actions/setup-python@v5
# with:
# python-version: "3.12"
- uses: actions/checkout@v4
with:
submodules: true
- uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}
create-symlink: true
- uses: rui314/setup-mold@v1
- uses: astral-sh/setup-uv@v4
- run: uv pip install --system nox
- run: nox -s cov
- uses: AndreMiras/coveralls-python-action@develop