From 47d4f589afa7abbcb83a80542728a174b906f633 Mon Sep 17 00:00:00 2001 From: elipeter Date: Wed, 25 Jun 2025 00:33:58 +0200 Subject: [PATCH] Refactor CI workflow: rename file, update job name, and remove verbose flag from cargo build --- .github/workflows/{rust.yml => ci.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{rust.yml => ci.yml} (87%) diff --git a/.github/workflows/rust.yml b/.github/workflows/ci.yml similarity index 87% rename from .github/workflows/rust.yml rename to .github/workflows/ci.yml index 0bd700a8..f35c534c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Rust +name: CI on: push: @@ -10,12 +10,12 @@ env: CARGO_TERM_COLOR: always jobs: - build: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Build - run: cargo build --verbose + run: cargo build - name: Run linter run: cargo clippy --all-targets --all-features -- -D warnings - name: Run tests