Skip to content

Fix/close compare on new project #58

Fix/close compare on new project

Fix/close compare on new project #58

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
Test:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: python -m pip install uv
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: uv sync
- name: Lint with ruff
run: uv run ruff check --output-format=github .
- name: Format with ruff
run: uv run ruff format . --check --diff