Enable GitHub CI

This commit is contained in:
Héctor Ramón Jiménez 2019-08-27 03:27:17 +02:00
parent 6298fd87a3
commit 016d2e271b

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

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