rpc: unify all ledger sequence types to uint32 and stop stringyfying integers < 53-bits wide #1726
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependency sanity checker | |
on: | |
push: | |
branches: [main, release/**] | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
dependency-sanity-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- run: scripts/check-dependencies.bash | |
validate-rust-git-rev-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: stellar/actions/rust-check-git-rev-deps@main |