Skip to content

fix: subclause_and_not! #80

fix: subclause_and_not!

fix: subclause_and_not! #80

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