From 221f4c078056261e403ce900634de08a3188746c Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Sat, 1 Jul 2023 11:18:40 -0700 Subject: [PATCH] add back toolchain config --- .github/workflows/build.yml | 1 + .github/workflows/test.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 08f1a64f..86365a99 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: + toolchain: stable target: ${{ matrix.target }} profile: minimal - uses: Swatinem/rust-cache@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 72da6c48..426d0051 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 + with: + toolchain: stable - uses: Swatinem/rust-cache@v1 - name: Build run: cargo test --verbose \ No newline at end of file