Merge pull request #152 from dtolnay/actions

Enable GitHub Actions
This commit is contained in:
David Tolnay 2020-05-02 15:09:06 -07:00 committed by GitHub
commit eef8eeb2f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,39 @@
name: test
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [stable, beta, 1.36.0]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo test
nightly:
name: Rust nightly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
- run: cargo test
- run: cargo update -Z minimal-versions
- run: cargo build
msrv:
name: Rust 1.31.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@1.31.0
- run: cargo check