From 6f395ed1ae27b4b30369cdf96e269d256425bb22 Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Sun, 28 Dec 2025 16:42:12 +0800 Subject: [PATCH] rename workflows jobs --- .github/workflows/test.yml | 7 ++----- .github/workflows/verify.yml | 5 +---- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c245bf..b1bfc59 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,11 +12,8 @@ on: jobs: - # setup is now handled by a composite action used by downstream jobs to keep - # the workflow DRY. The composite action performs checkout, cache restore and - # toolchain setup. - test: + test-crates: needs: frontend-build runs-on: ubuntu-latest steps: @@ -39,7 +36,7 @@ jobs: - name: Run tests run: cargo test --all-features - lint: + lint-crates: needs: frontend-build runs-on: ubuntu-latest steps: diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 4888aa9..216995f 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -11,11 +11,8 @@ on: jobs: - # setup is now handled by a composite action used by downstream jobs to keep - # the workflow DRY. The composite action performs checkout, cache restore and - # toolchain setup. - verify-generated-code: + verify-generated-database-code: runs-on: ubuntu-latest steps: - name: Checkout repository