Skip to content

Commit

Permalink
update workflow actions (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscorn committed Feb 3, 2025
1 parent 431d75d commit 5744383
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: docker pull qgis/qgis:${{ matrix.qgis_image_tag }}

- name: Setup uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
Expand All @@ -33,14 +33,14 @@ jobs:
- name: Run tests
run: >
docker run --rm --volume `pwd`:/app -w=/app qgis/qgis:${{ matrix.qgis_image_tag }} sh -c "
pip3 install -r requirements.txt &&
pip3 install --require-hashes --no-deps -r requirements.txt &&
PYTHONPATH=/app xvfb-run -s '+extension GLX -screen 0 1024x768x24' pytest -v --cov --cov-report=xml --cov-report=term
"
- name: Upload coverage
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
env_vars: OS,QGIS_IMAGE_TAG
fail_ci_if_error: false

0 comments on commit 5744383

Please sign in to comment.