From 8a116fb062c1560abc584222d962fbd347b45063 Mon Sep 17 00:00:00 2001 From: Serj Zavadsky Date: Tue, 19 Sep 2023 17:02:21 +0200 Subject: [PATCH] use fixed rust toolchain for tests --- .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 a87659e..ef95348 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,10 +11,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: 1.71 + - 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 \ No newline at end of file