Skip to content

fix(ci): bump actions/checkout SHA to 11d5960 (v4.2.2) for security p… #119

fix(ci): bump actions/checkout SHA to 11d5960 (v4.2.2) for security p…

fix(ci): bump actions/checkout SHA to 11d5960 (v4.2.2) for security p… #119

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@11d5960a326750d5838078e36cf38b85af677262 # 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