From 0ed40419c152a10f465ba8cddd7b316392badde6 Mon Sep 17 00:00:00 2001 From: qwerty2501 <939468+qwerty2501@users.noreply.github.com> Date: Thu, 19 May 2022 06:15:43 +0900 Subject: [PATCH] =?UTF-8?q?GitHub=20Actions=E4=B8=8A=E3=81=A7Rust=E3=81=AE?= =?UTF-8?q?=E3=82=AD=E3=83=A3=E3=83=83=E3=82=B7=E3=83=A5=E3=81=8C=E5=BC=95?= =?UTF-8?q?=E3=81=8D=E7=B6=99=E3=81=8C=E3=82=8C=E3=82=8B=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB=E3=81=97=E3=81=A6=E3=83=86=E3=82=B9=E3=83=88=E3=82=92?= =?UTF-8?q?=E9=AB=98=E9=80=9F=E3=81=AB=E7=B5=82=E3=82=8F=E3=82=8B=E3=82=88?= =?UTF-8?q?=E3=81=86=E3=81=AB=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9b78c11dc..330a5205a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: toolchain: stable + - uses: Swatinem/rust-cache@v1 - run: cargo clippy --all-features --tests -- -D clippy::all -D warnings --no-deps - run: cargo fmt -- --check @@ -29,6 +30,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: toolchain: stable + - uses: Swatinem/rust-cache@v1 - run: cargo test --all-features . env: CARGO_TERM_COLOR: always