Skip to content

Update lockfile

Update lockfile #539

Workflow file for this run

name: Lint Python Code Base
on:
push:
branches-ignore:
- 'gh-pages'
paths:
- compass/**
- pyproject.toml
- .github/workflows/lint-python.yml
pull_request:
paths:
- compass/**
- pyproject.toml
- .github/workflows/lint-python.yml
jobs:
lint:
name: Lint Python Code Base with Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/ruff-action@v3
with:
version: "latest"
args: "check"
src: "./compass"
- uses: astral-sh/ruff-action@v3
with:
version: "latest"
args: "format --check"
src: "./compass"