initial commit

This commit is contained in:
Srinath Setty
2019-12-16 14:41:07 -08:00
parent be426e7bb6
commit 95b9ad35a6
33 changed files with 8986 additions and 14 deletions

21
.github/workflows/rust.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: rustup default nightly
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose