Skip to content

chore(deps): bump actions/configure-pages from 5 to 6 #67

chore(deps): bump actions/configure-pages from 5 to 6

chore(deps): bump actions/configure-pages from 5 to 6 #67

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 3, Col: 4): Unexpected value '', (Line: 4, Col: 1): Unexpected value 'push', (Line: 6, Col: 1): Unexpected value 'pull_request'
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e ".[dev]"
- name: Lint with ruff
run: pip install ruff && ruff check src/ --target-version py310
- name: Run tests
run: |
python -m pytest tests/ -v --cov=src --cov-report=term-missing