Skip to content

Fix formatting of project status warning in README #4

Fix formatting of project status warning in README

Fix formatting of project status warning in README #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Build, Test, Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
targets: wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- name: Install system dependencies
run: sudo apt-get install -y clang lld
- name: Install kani-verifier
run: cargo install --locked kani-verifier && cargo kani setup
- name: Build
run: cargo build --all-targets
- name: Test
run: cargo test
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Format check
run: cargo fmt --check