initial commit

This commit is contained in:
Harald Hoyer 2020-03-10 22:27:22 +01:00
commit 85acc0c4af
7 changed files with 464 additions and 0 deletions

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

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