Skip to content

Commit 4f55a4f

Browse files
authored
Update coverage.yml
1 parent 7feee8e commit 4f55a4f

File tree

1 file changed

+21
-30
lines changed

1 file changed

+21
-30
lines changed

.github/workflows/coverage.yml

+21-30
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,37 @@ name: Coverage
33
on:
44
pull_request:
55
paths-ignore:
6-
- "doc/**"
7-
- ".ci/**"
8-
- "*.rst"
6+
- 'doc/**'
7+
- '.ci/**'
8+
- '*.rst'
99
push:
1010
branches:
1111
- main
1212
- develop
1313
- qtcitests
1414
- beta/*
1515
paths-ignore:
16-
- "doc/**"
17-
- ".ci/**"
18-
- "*.rst"
16+
- 'doc/**'
17+
- '.ci/**'
18+
- '*.rst'
1919

2020
jobs:
2121
coverage:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
# install-qt-action also does setup-python
26-
- name: Install Qt
27-
uses: jurplel/install-qt-action@v3
28-
with:
29-
aqtversion: "==3.1.*"
30-
version: "6.8.1"
31-
host: "linux"
32-
target: "desktop"
33-
arch: "linux_gcc_64"
34-
# - uses: actions/setup-python@v5
35-
# with:
36-
# python-version: "3.12"
37-
- uses: actions/checkout@v4
38-
with:
39-
submodules: true
40-
- uses: hendrikmuhs/ccache-action@v1.2
41-
with:
42-
key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}
43-
create-symlink: true
44-
- uses: rui314/setup-mold@v1
45-
- uses: astral-sh/setup-uv@v4
46-
- run: uv pip install --system nox PySide6==6.8.1
47-
- run: nox -s cov
48-
- uses: AndreMiras/coveralls-python-action@develop
25+
- uses: actions/checkout@v4
26+
with:
27+
submodules: true
28+
- uses: hendrikmuhs/ccache-action@v1.2
29+
with:
30+
key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}
31+
create-symlink: true
32+
- uses: rui314/setup-mold@v1
33+
- uses: actions/setup-python@v5
34+
with:
35+
python-version: "3.12"
36+
- uses: astral-sh/setup-uv@v4
37+
- run: uv pip install --system nox
38+
- run: nox -s cov
39+
- uses: AndreMiras/coveralls-python-action@develop

0 commit comments

Comments
 (0)