Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
blueraft committed Sep 11, 2024
1 parent 368fc1b commit bc6ead3
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/run-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@ on:

jobs:
tox:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-14]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install tox
run: pip install tox-uv
python-version: 3.11
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Run tox
run: tox -e py
run: |
uv run --with pytest --with pytest-cookies --with tox-uv pytest

0 comments on commit bc6ead3

Please sign in to comment.