fix: use twelve character console columns #26
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Update Rust toolchain | |
| run: | | |
| rustup update stable | |
| rustup default stable | |
| rustup component add rustfmt clippy | |
| - name: Check formatting | |
| run: cargo fmt --all -- --check | |
| - name: Check clippy | |
| run: cargo clippy --workspace --all-targets --all-features -- -D warnings -D clippy::pedantic | |
| - name: Test | |
| run: cargo test --workspace --all-features |