Skip to content

Merge pull request #78 from PrivateAIM/hub-0.8.19 #201

Merge pull request #78 from PrivateAIM/hub-0.8.19

Merge pull request #78 from PrivateAIM/hub-0.8.19 #201

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 .