Skip to content

Don't override python in devcontainer (#31) #76

Don't override python in devcontainer (#31)

Don't override python in devcontainer (#31) #76

Workflow file for this run

name: Lint with Ruff
on:
push:
branches:
- main
pull_request:
jobs:
lint:
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.12
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run Ruff
run: poetry run ruff check .