From 67a5179879f65ea31f97e2bcfbf0bd843ff19461 Mon Sep 17 00:00:00 2001 From: Alexey Lebedenko Date: Fri, 25 Oct 2024 15:12:43 +0200 Subject: [PATCH] cleanup workflow --- .github/workflows/rust_checks.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/rust_checks.yml b/.github/workflows/rust_checks.yml index 75e075d..333cb41 100644 --- a/.github/workflows/rust_checks.yml +++ b/.github/workflows/rust_checks.yml @@ -9,11 +9,7 @@ jobs: check-all: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Check clippy - uses: UbiqueInnovation/action-systems-rust-clippy@main - - name: Check formatting - uses: UbiqueInnovation/action-systems-rust-format@main - - name: Run and report tests - uses: UbiqueInnovation/action-systems-rust-test@main + - uses: actions/checkout@v4 + - uses: UbiqueInnovation/action-systems-rust-clippy@main + - uses: UbiqueInnovation/action-systems-rust-format@main + - uses: UbiqueInnovation/action-systems-rust-test@main