From 58a73c5626f1d25e229595502d288f538143effd Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Thu, 11 Feb 2021 12:06:54 -0300 Subject: [PATCH] add beta rust to test jobs --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e85294b63..f8e38fb2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,13 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] + rust: [stable, beta] steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: ${{ matrix.rust }} override: true - name: cargo fetch uses: actions-rs/cargo@v1 @@ -77,7 +78,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - rust: [stable,beta] + rust: [stable, beta] steps: - uses: actions/checkout@v1