Skip to content

Create Python project starter template #4

Create Python project starter template

Create Python project starter template #4

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run ruff
run: ruff check .
- name: Run mypy
run: mypy src tests