Skip to content

Commit

Permalink
ci: add uv job for better logging output
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed Oct 31, 2024
1 parent f702947 commit 2d6d9e8
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,35 @@ jobs:
include-hidden-files: true
if-no-files-found: error

uvrun:
# This job doesn't interfere with logging
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Pythons
uses: actions/setup-python@v5
with:
python-version: |
3.9
3.10
3.12
- name: Setup uv
uses: astral-sh/setup-uv@v3
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: 3.12
use-mamba: true
channels: conda-forge
- name: Run tests with uv
run: uv run pytest


coverage:
needs: build
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2d6d9e8

Please sign in to comment.