From dbcb3a788be3d542c56bfa4a8f31952782c1256c Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 2 May 2020 23:38:33 -0700 Subject: [PATCH] Enable GitHub Actions --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a9cf594 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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