Skip to content

chore(ci):(deps): bump actions/checkout from 4 to 7 #32

chore(ci):(deps): bump actions/checkout from 4 to 7

chore(ci):(deps): bump actions/checkout from 4 to 7 #32

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
python-tests:
name: Python Tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run pytest
run: pytest tests/ -v --tb=short