Add availableLiquidity function to StargateAdapters #314
This file contains hidden or 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: Goat Protocol Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - staging | |
| jobs: | |
| check: | |
| strategy: | |
| fail-fast: true | |
| env: | |
| ARBITRUM_RPC_URL: ${{ secrets.ARBITRUM_RPC_URL }} | |
| name: Foundry project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: "Run Goat Protocol Tests" | |
| run: 'forge test --no-match-path "{test/invariant/**/*,test/integration/adapters/**/*,test/live/*}" -vvv' |