Add github workflow for CI

This commit is contained in:
Graham Esau 2019-12-27 17:45:55 +00:00 committed by GitHub
parent 0ae2d48fba
commit 805fb243b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

36
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,36 @@
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.32.0
- stable
- beta
- nightly
include:
- rust: nightly
allow_failure: true
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Check with no feature flags
run: cargo check --verbose --no-default-features
continue-on-error: ${{ matrix.allow_failure }}
working-directory: ./schemars
- name: Run tests
run: cargo test --verbose --all-features --no-fail-fast
continue-on-error: ${{ matrix.allow_failure }}
working-directory: ./schemars
- name: Run derive tests
run: cargo test --verbose --all-features --no-fail-fast
continue-on-error: ${{ matrix.allow_failure }}
working-directory: ./schemars_derive