Skip to content

Merge pull request #40 from bento-platform/chore/update #92

Merge pull request #40 from bento-platform/chore/update

Merge pull request #40 from bento-platform/chore/update #92

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Format check
run: poetry run ruff format --check
- name: Lint check
run: poetry run ruff check