Skip to content

Update gh actions.

Update gh actions. #31

Workflow file for this run

name: lint
on:
push:
tags: '*'
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- uses: chartboost/ruff-action@v1
- uses: jakebailey/pyright-action@v2