Skip to content

Merge pull request #76 from PrivateAIM/prepare-027 #199

Merge pull request #76 from PrivateAIM/prepare-027

Merge pull request #76 from PrivateAIM/prepare-027 #199

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Poetry
uses: ./.github/actions/setup-poetry
- name: Install dependencies
run: poetry install --with dev
- name: Lint
run: poetry run ruff check .
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Poetry
uses: ./.github/actions/setup-poetry
- name: Install dependencies
run: poetry install --with dev
- name: Lint
run: poetry run ruff format --check .