Skip to content

Commit

Permalink
Add git rev dep check to ci (#1078)
Browse files Browse the repository at this point in the history
### What
Add git rev dep check to ci

### Why

Close stellar/actions#55
  • Loading branch information
leighmcculloch committed Aug 31, 2023
1 parent 63cc30d commit 9a2b6d0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 9a2b6d0

Please sign in to comment.