From 54590f8157b0fcad80856cb508b7ad9031157c59 Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Tue, 9 Sep 2025 14:53:34 +0300 Subject: [PATCH] fix: ci test run 3 --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7998066..82bd6a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,11 +28,17 @@ jobs: toolchain: nightly override: true components: rustfmt, clippy + - name: Cache Rust dependencies uses: Swatinem/rust-cache@v2 + with: + workspaces: | + . -> target + - name: lint - ubuntu-latest if: success() || failure() run: chmod 777 ./ci_scripts/lint-ubuntu.sh && ./ci_scripts/lint-ubuntu.sh + - name: test ubuntu-latest if: success() || failure() run: chmod 777 ./ci_scripts/test-ubuntu.sh && ./ci_scripts/test-ubuntu.sh