Skip to content

Human in the loop

Human in the loop #56

Workflow file for this run

name: Run Lint checks
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
lint:
name: Run Ruff
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Install dependencies
run: |
poetry install --all-extras --no-interaction
- name: Run tests with pytest
run: |
poetry run ruff check .