cursive/.github/workflows/rust.yml

16 lines
260 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
2019-10-09 22:32:49 +00:00
run: cargo build --no-default-features --verbose
2019-10-09 21:53:15 +00:00
- name: Run tests
2019-10-09 22:32:49 +00:00
run: cargo test --no-default-features --verbose