Skip to content

Commit

Permalink
attempt to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HDembinski committed Dec 17, 2024
1 parent 2d872ab commit 3ffd0c8
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,39 @@ name: Coverage
on:
pull_request:
paths-ignore:
- 'doc/**'
- '.ci/**'
- '*.rst'
- "doc/**"
- ".ci/**"
- "*.rst"
push:
branches:
- main
- develop
- beta/*
paths-ignore:
- 'doc/**'
- '.ci/**'
- '*.rst'
- "doc/**"
- ".ci/**"
- "*.rst"

jobs:
coverage:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}
create-symlink: true
- uses: rui314/setup-mold@v1
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: astral-sh/setup-uv@v4
- run: sudo apt install libegl1-mesa:i386 libegl1:i386
- run: uv pip install --system nox
- run: nox -s cov
- uses: AndreMiras/coveralls-python-action@develop
- uses: jurplel/install-qt-action@v4
with:
version: "6.*"
- uses: actions/checkout@v4
with:
submodules: true
- uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}
create-symlink: true
- uses: rui314/setup-mold@v1
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: astral-sh/setup-uv@v4
- run: uv pip install --system nox
- run: nox -s cov
- uses: AndreMiras/coveralls-python-action@develop

0 comments on commit 3ffd0c8

Please sign in to comment.