Skip to content

chore: Remove leftover badges from Cargo.toml #6

chore: Remove leftover badges from Cargo.toml

chore: Remove leftover badges from Cargo.toml #6

Workflow file for this run

name: Sanity Checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run Clippy
run: cargo clippy -- -Dwarnings
- name: Run tests
run: cargo test