cursive/.github/workflows/rust.yml

16 lines
346 B
YAML
Raw Normal View History

2019-10-09 21:53:15 +00:00
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
2020-05-26 20:22:56 +00:00
run: cd cursive && cargo build --features crossterm-backend --no-default-features --verbose
2019-10-09 21:53:15 +00:00
- name: Run tests
2020-05-26 20:22:56 +00:00
run: cd cursive && cargo test --features crossterm-backend --no-default-features --verbose