Skip to content

Typo in get-started.md #84

Typo in get-started.md

Typo in get-started.md #84

name: Ratatui-Crossterm
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Test
run: cargo test --no-fail-fast --lib --features derive,serialize,crossterm --no-default-features
- name: Examples
run: cargo build --all-targets --examples
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --lib --features derive,serialize,crossterm --no-default-features -- -Dwarnings