Skip to content

Add workflow.

Add workflow. #1

Workflow file for this run

name: Python
on:
push:
workflow_dispatch:
strategy:

Check failure on line 7 in .github/workflows/python.yml

View workflow run for this annotation

GitHub Actions / Python

Invalid workflow file

The workflow is not valid. .github/workflows/python.yml (Line: 7, Col: 1): Unexpected value 'strategy'
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest
- name: mypy check
run: uv run mypy