Skip to content

update Summerset svg logo #116

update Summerset svg logo

update Summerset svg logo #116

Workflow file for this run

name: Format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Add rust nightly toolchain with rustfmt
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Format check (Rust)
run: cargo +nightly fmt --all -- --check
- name: Add ruff tooling
uses: astral-sh/ruff-action@v3
- name: Format check (Python)
run: ruff format --check --diff --verbose
- name: Python lint check
run: ruff check