Set up GitHub Actions

This commit is contained in:
David Tolnay 2022-05-16 14:49:46 -07:00
parent 27866dd600
commit c424a3ec3c
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

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

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