Skip to content

feat: Count the number of words in WRs #9

feat: Count the number of words in WRs

feat: Count the number of words in WRs #9

Workflow file for this run

on: [push, pull_request]
name: ci
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Run Clippy
run: cargo clippy --no-deps
- name: Run Rustfmt (run `cargo fmt --all` to fix)
run: cargo fmt --all -- --check