update Summerset svg logo #116
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |