Skip to content

Bump actions/checkout from 6 to 7 (#5) #44

Bump actions/checkout from 6 to 7 (#5)

Bump actions/checkout from 6 to 7 (#5) #44

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install ".[dev]"
- name: Run tests
run: pytest