Skip to content

Update crates/whiskers/README.md #14

Update crates/whiskers/README.md

Update crates/whiskers/README.md #14

Workflow file for this run

name: Native CI
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
- release/*
jobs:
check:
name: "lint, tests, clippy"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@v2
with:
tool: just
- run: just fmt
- run: just clippy
- run: just test