2019-10-09 21:53:15 +00:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2020-12-20 18:33:25 +00:00
|
|
|
- name: Check
|
|
|
|
run: cd cursive && cargo check --all-features
|
2019-10-09 21:53:15 +00:00
|
|
|
- name: Build
|
2020-12-20 18:33:25 +00:00
|
|
|
run: cd cursive && cargo build --features "markdown pancurses-backend termion-backend crossterm-backend" --no-default-features --verbose
|
2019-10-09 21:53:15 +00:00
|
|
|
- name: Run tests
|
2020-12-20 18:33:25 +00:00
|
|
|
run: cd cursive && cargo test --features "markdown pancurses-backend termion-backend crossterm-backend" --no-default-features --verbose
|