Initial source commit

This commit is contained in:
Tony Bark 2020-02-06 16:37:23 -05:00
commit 08b16dae6b
12 changed files with 833 additions and 0 deletions

19
.github/workflows/rust.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-16.04, ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Update
run: rustup update
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose