From f54d90274d417b9c466ff6c1c6b920baab20a5b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=BDubom=C3=ADr=20Kur=C4=8D=C3=A1k?= Date: Wed, 8 May 2024 15:05:49 +0200 Subject: [PATCH] fix pr pipeline --- .github/workflows/pr.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 570c593..7317a2c 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,17 +18,24 @@ jobs: - ubuntu-latest - windows-latest - macos-latest - toolchain: + rust: - stable - nightly runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@#{{ matrix.toolchain }} + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install Rust + uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ matrix.rust }} + - name: Test run: cargo test + - name: Test (Release) run: cargo test --release