You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
337 B

4 years ago
  1. name: Rust
  2. on:
  3. push:
  4. branches: [ master ]
  5. pull_request:
  6. branches: [ master ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: Install
  13. run: rustup default nightly
  14. - name: Build
  15. run: cargo build --verbose
  16. - name: Run tests
  17. run: cargo test --verbose