Skip to content

Commit

Permalink
test matrix of python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcandr committed Oct 19, 2024
1 parent efe3531 commit fb4504b
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
name: Example
name: Tests

on: [push]

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

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

steps:
- uses: actions/checkout@v4

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

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

- name: Install the project
run: uv sync --all-extras --dev
Expand Down

0 comments on commit fb4504b

Please sign in to comment.