cursive/.github/workflows/rust.yml

16 lines
288 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
run: cd cursive && cargo build --no-default-features --verbose
2019-10-09 21:53:15 +00:00
- name: Run tests
run: cd cursive && cargo test --no-default-features --verbose