From f399ae5845ea8258208ca93815eead2d2cb9c37b Mon Sep 17 00:00:00 2001 From: Serhii Temchenko Date: Thu, 23 May 2024 16:55:47 -0700 Subject: [PATCH] build(ci): Added 'needs' properties to ensure jobs run in the proper sequence --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e5f41a94b..11133bad8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,6 +32,7 @@ jobs: format: runs-on: self-hosted + needs: toml steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable @@ -52,6 +53,9 @@ jobs: clippy_build_and_test: runs-on: self-hosted + needs: + - toml + - format steps: - uses: actions/checkout@v4 - name: Cargo caching