Enable GitHub CI
This commit is contained in:
parent
6298fd87a3
commit
016d2e271b
1 changed files with 16 additions and 0 deletions
16
.github/workflows/integration.yml
vendored
Normal file
16
.github/workflows/integration.yml
vendored
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue