Skip to content

Task - Run check

Task - Run check #1

Workflow file for this run

---
name: Task - Run check
on:
workflow_dispatch:
workflow_call:
jobs:
rust_check:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
shared-key: "cache"
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-08-24
components: rustfmt, clippy
target: wasm32-unknown-unknown
profile: minimal
- name: Check the project
run: |
cargo check --release --workspace