Skip to content

Delete cargo-audit.yml workflow #288

Delete cargo-audit.yml workflow

Delete cargo-audit.yml workflow #288

Workflow file for this run

name: CI Testing
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Check out repository"
uses: actions/checkout@v3
# Rust builds can take some time, cache them.
- uses: Swatinem/rust-cache@v2
- name: "Install lunatic"
run: cargo install --git https://github.com/lunatic-solutions/lunatic lunatic-runtime
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-wasi
override: true
components: rustfmt, clippy
- name: "Run tests"
run: cargo test --workspace
- name: "Run clippy"
run: cargo clippy -- -D warnings
- name: "Check formatting"
run: cargo fmt -- --check