0 proceed withdraw logic #776
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: Rust Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: rust test | |
runs-on: ubuntu-latest-m | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# NOTE: This is needed to ensure that hyperdrive-wrappers builds correctly. | |
- name: install foundry | |
uses: foundry-rs/[email protected] | |
with: | |
version: nightly | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- name: test | |
run: make test-rust |