Skip to content

Bump the python-dependencies group across 1 directory with 6 updates #224

Bump the python-dependencies group across 1 directory with 6 updates

Bump the python-dependencies group across 1 directory with 6 updates #224

Workflow file for this run

name: Lint
on:
push:
branches: [main, master]
pull_request:
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
- run: ruff check .
- run: ruff format --check .
rust-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings