Enable GitHub Actions

This commit is contained in:
David Tolnay 2020-05-02 23:38:33 -07:00
parent 93a16b1553
commit dbcb3a788b
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

22
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: test
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.31.0]
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo test