From d2d63348c70401b5cb80843d19ff3e21074b1641 Mon Sep 17 00:00:00 2001 From: nasa Date: Fri, 8 Nov 2019 22:05:53 +0900 Subject: [PATCH] Stable and beta add to CI (#482) * Add stable and beta * Add benches --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 031ffc9..ca83f9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - rust: [nightly] + rust: [nightly, beta, stable] steps: - uses: actions/checkout@master @@ -38,7 +38,13 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --features unstable --all --benches --bins --examples --tests + args: --features unstable --all --bins --examples --tests + - name: check bench + uses: actions-rs/cargo@v1 + if: matrix.rust == 'nightly' + with: + command: check + args: --benches - name: check std only uses: actions-rs/cargo@v1