Skip to content

feat: load-blaster deployed and ready #1

feat: load-blaster deployed and ready

feat: load-blaster deployed and ready #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
rust:
name: Rust Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Cargo test
run: cargo test --all-features --all-targets
- name: Duplicate crates report
run: cargo tree -d