Skip to content

fix: use twelve character console columns #26

fix: use twelve character console columns

fix: use twelve character console columns #26

Workflow file for this run

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