fix: macros were not usable from external crates since the `tuirealm:… #81
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ratatui-Termion | |
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 | |
components: rustfmt, clippy | |
- name: Test | |
run: cargo test --no-fail-fast --lib --no-default-features --features derive,serialize,termion | |
- name: Examples | |
run: cargo build --all-targets --no-default-features --features derive,serialize,termion --examples | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: Clippy | |
run: cargo clippy --lib --no-default-features --features derive,serialize,termion -- -Dwarnings |