chore: add way to invoke cargo from go code in effort to reuse rust tests #1314
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.20.1 | |
- 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 |