Skip to content

Remove deprecated unstable_scroll feature #639

Remove deprecated unstable_scroll feature

Remove deprecated unstable_scroll feature #639

Workflow file for this run

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