Skip to content

Commit

Permalink
CI: Lint and test via uv (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Nov 2, 2024
1 parent 273a1c6 commit e7b7705
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@ name: Tests

on: [push, pull_request, workflow_dispatch]

permissions:
contents: read

env:
FORCE_COLOR: 1

jobs:
test:
name: test w/ Python ${{ matrix.python-version }}
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -17,23 +20,26 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip

- name: Install uv
uses: hynek/setup-cached-uv@v2
with:
cache-dependency-path: |
requirements.txt
dev-requirements.txt
- name: Install tox
- name: Tox tests
run: |
python -m pip install tox
- name: Run Tests
env:
# run against the current Python interpreter
TOXENV: py
run: tox
uvx --with tox-uv tox -e py
- uses: codecov/codecov-action@v4
if: always()
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: pip
- uses: pre-commit/[email protected]
- uses: tox-dev/action-pre-commit-uv@v1

0 comments on commit e7b7705

Please sign in to comment.