Add basic github actions in rust.yml

This commit is contained in:
Raamakrishnan A 2020-02-02 14:14:09 +05:30 committed by GitHub
parent 753e3d7693
commit 4278c9f3c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
rust.yml Normal file
View file

@ -0,0 +1,15 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose