Skip to content

Fix spelling mistake "witespace" to "whitespace" #143

Fix spelling mistake "witespace" to "whitespace"

Fix spelling mistake "witespace" to "whitespace" #143

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
ci:
name: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: fmt
run: cargo +nightly fmt --all -- --check
- uses: dtolnay/rust-toolchain@stable
- name: build
run: cargo build
- name: test
run: cargo test -p rstml
- name: clippy
run: cargo clippy --workspace
- uses: dtolnay/rust-toolchain@nightly
- name: test on Nightly
run: cargo test --workspace
- name: coverage
run: |
cargo install cargo-tarpaulin
cargo tarpaulin --out xml
bash <(curl -s https://codecov.io/bash)