From 6de4b29d69ccd03c6ab8bef66a4eeaf588e50a92 Mon Sep 17 00:00:00 2001 From: Markus Westerlind Date: Wed, 8 Jun 2022 11:41:54 +0200 Subject: [PATCH] chore: Actually use nightly/beta rust on ci --- .github/workflows/rust.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 94b0ed9d..60147b91 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,7 +22,15 @@ jobs: steps: - uses: actions/checkout@v2 + + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: ${{ matrix.rust }} + override: true + - name: Build run: cargo build + - name: Run tests run: ./ci.sh