Skip to content

docs: Fixed thet ests badge not showing up. #33

docs: Fixed thet ests badge not showing up.

docs: Fixed thet ests badge not showing up. #33

Workflow file for this run

name: format
on:
push:
branches: [main]
pull_request:
jobs:
format:
runs-on: ubuntu-latest
permissions:
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set-up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt, clippy
- name: Test clippy lints
run: cargo clippy --all
- name: Test format
run: cargo +nightly fmt --all --check