Skip to content

feat: CODEOWNERS, auto-code-review workflow, AGENTS.md, eslint config… #105

feat: CODEOWNERS, auto-code-review workflow, AGENTS.md, eslint config…

feat: CODEOWNERS, auto-code-review workflow, AGENTS.md, eslint config… #105

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: 37, Col: 9): There's not enough info to determine what you meant. Add one of these properties: cancel, run, shell, uses, wait, wait-all, with, working-directory
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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
pip config set global.retries 5 || true
pip install -e ".[dev]"
- name: Lint with ruff
run: ruff check src/ tests/
- name: Run tests