Skip to content

Merge pull request #3 from wolfmanstout/pre-commit-ci-update-config #19

Merge pull request #3 from wolfmanstout/pre-commit-ci-update-config

Merge pull request #3 from wolfmanstout/pre-commit-ci-update-config #19

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --dev
- name: Run tests
run: uv run pytest