Skip to content

Bugfix: use View style rather than Primary in ThemedView #461

Bugfix: use View style rather than Primary in ThemedView

Bugfix: use View style rather than Primary in ThemedView #461

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Check
run: cd cursive && cargo check --features "blt-backend ncurses-backend pancurses-backend termion-backend crossterm-backend markdown toml ansi"
- name: Build
run: cd cursive && cargo build --features "toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose
- name: Run tests
run: cd cursive && cargo test --features "toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose