Add builder feature to CI checks #638
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: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
TERM: xterm | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Check | |
# We run checks with all backend features to make sure they compile, but don't actually build them as they require external libs. | |
run: cargo check --features "builder blt-backend ncurses-backend pancurses-backend termion-backend crossterm-backend markdown toml ansi" | |
- name: Build | |
run: cargo build --features "builder toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose | |
- name: Run tests | |
run: > | |
cargo test --features "builder toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose && | |
cargo test --example select_test |