From b157171cc5780d2b07b469397234d38b955d87a6 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 8 Sep 2025 14:39:40 +0300 Subject: [PATCH] update dependencies --- .github/workflows/build.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 324178e..3ff2089 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,11 +17,9 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Run rustfmt - run: cargo fmt --all -- --check - - name: Run clippy - run: cargo clippy --all-targets - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose \ No newline at end of file + - run: rustup update + - run: cargo update + - run: cargo fmt --all -- --check + - run: cargo clippy --all-targets + - run: cargo build --verbose + - run: cargo test --verbose \ No newline at end of file