Skip to content

Commit

Permalink
Merge pull request #17 from dtolnay/actions
Browse files Browse the repository at this point in the history
Enable GitHub Actions
  • Loading branch information
dtolnay committed May 3, 2020
2 parents e777ae3 + 835f317 commit 520366f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,21 @@
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: [nightly, beta, stable, 1.31.0]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo test

0 comments on commit 520366f

Please sign in to comment.