fea: add PositionManager #751
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: Run foundry tests | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository and submodules | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Run install | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: install # will run `yarn install` command | |
| - name: Lint code | |
| run: npm run check | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Run unit tests | |
| run: forge test -vvv | |
| env: | |
| ETH_RPC: ${{ secrets.ETH_RPC }} | |
| BSC_RPC: ${{ secrets.BSC_RPC }} |