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 - name: Run tests run: cd cursive && cargo test --no-default-features --verbose