From f699376acafaf8d541b370aa1c73d7187a196244 Mon Sep 17 00:00:00 2001 From: Serhii Zavadskyi Date: Tue, 19 Sep 2023 16:56:52 +0200 Subject: [PATCH] pin rust toolchain to 1.71 --- .github/workflows/ci.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 66490d9..281c1e6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,13 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable + - name: install exact rust compiler + run: rustup toolchain install 1.71 && rustup default 1.71 - name: Run tests - uses: actions-rs/cargo@v1 - with: - command: test + run: cargo test --verbose build_and_deploy: runs-on: ubuntu-latest