Skip to content

Commit

Permalink
Add builder feature to CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
gyscos committed Aug 2, 2024
1 parent c09a9ae commit ffaf93d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Check
run: cargo check --features "blt-backend ncurses-backend pancurses-backend termion-backend crossterm-backend markdown toml ansi"
# 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 "toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose
run: cargo build --features "builder toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose
- name: Run tests
run: >
cargo test --features "toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose &&
cargo test --features "builder toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose &&
cargo test --example select_test

0 comments on commit ffaf93d

Please sign in to comment.