Skip to content

docs: document auto-resetting state on app termination in README #13

docs: document auto-resetting state on app termination in README

docs: document auto-resetting state on app termination in README #13

Workflow file for this run

name: Rust CI
on:
push:
branches: [ "master", "main" ]
pull_request:
branches: [ "master", "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
check-and-test:
name: Format, Lint, Check, and Test
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run cargo check
run: cargo check --verbose
- name: Run cargo test
run: cargo test --verbose