Skip to content

Bump black from 25.11.0 to 26.3.1 in /python #505

Bump black from 25.11.0 to 26.3.1 in /python

Bump black from 25.11.0 to 26.3.1 in /python #505

Workflow file for this run

name: cargo build/test/clippy
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
build:
strategy:
matrix:
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners
os: [ubuntu-latest, windows-latest, windows-11-arm, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo build
- run: cargo build --release
- run: cargo test
- run: cargo clippy