Start with an initial draft

This commit is contained in:
Héctor Ramón Jiménez 2019-12-18 05:55:32 +01:00
commit 6f71824857
7 changed files with 160 additions and 0 deletions

16
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: Test
on: [push, pull_request]
jobs:
all:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable, beta]
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Run tests
run: cargo test --verbose