Rename Integration workflow to Test

This commit is contained in:
Héctor Ramón Jiménez 2019-11-14 23:41:41 +01:00
parent fb49679a04
commit b59b5ad0e9

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

@ -0,0 +1,18 @@
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 --all
cargo test --verbose --all --all-features