Skip to content

fix(release): push only new tags instead of all tags #45

fix(release): push only new tags instead of all tags

fix(release): push only new tags instead of all tags #45

Workflow file for this run

name: Lint
on:
pull_request:
types: [opened, synchronize, reopened]
env:
CI: true
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: uv sync --all-packages
- name: Ruff check
run: uv run ruff check .
- name: Ruff format check
run: uv run ruff format --check .
- name: Mypy
run: uv run mypy .