From 9a2b6d056839429fcfa13024f9d6b34e712aef9b Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Thu, 31 Aug 2023 09:48:09 -0700 Subject: [PATCH] Add git rev dep check to ci (#1078) ### What Add git rev dep check to ci ### Why Close stellar/actions#55 --- .github/workflows/rust.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b4ba32451..923d0fc3f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,7 +17,7 @@ jobs: complete: if: always() - needs: [fmt, rust-analyzer-compat, build-and-test, docs] + needs: [fmt, check-git-rev-deps, rust-analyzer-compat, build-and-test, docs] runs-on: ubuntu-latest steps: - if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') @@ -45,6 +45,12 @@ jobs: with: command: check ${{ matrix.checks }} + check-git-rev-deps: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: stellar/actions/rust-check-git-rev-deps@main + rust-analyzer-compat: runs-on: ubuntu-latest steps: