Skip to content

add spelling check with typos in ci #67

add spelling check with typos in ci

add spelling check with typos in ci #67

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v2
with:
log-level: warn
command: check
- uses: Swatinem/rust-cache@v2
- name: Check fmt
run: cargo fmt --check
- name: Check spelling
uses: crate-ci/typos@master
- name: Lint
run: cargo clippy --locked
- name: Run tests
run: cargo test --locked