Skip to content

fix: macros were not usable from external crates since the `tuirealm:… #198

fix: macros were not usable from external crates since the `tuirealm:…

fix: macros were not usable from external crates since the `tuirealm:… #198

name: Crossterm (Windows)
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-2019
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 --no-default-features --features derive,serialize,crossterm
- name: Examples
run: cargo build --all-targets --examples
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --lib --no-default-features --features derive,serialize,crossterm -- -Dwarnings