Skip to content

Commit

Permalink
try github action
Browse files Browse the repository at this point in the history
  • Loading branch information
vpoulailleau committed Dec 13, 2024
1 parent b74cb1c commit 059a9d0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: tests

strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"

jobs:
uv-example:
name: tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v4

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}

- name: Run tests
run: uv run pytest

0 comments on commit 059a9d0

Please sign in to comment.