implement permit transfer asset from via permit2 #71
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: Test CI | |
| on: push | |
| jobs: | |
| build: | |
| name: Unit & Integration tests | |
| env: | |
| ETHEREUM_URL: ${{ secrets.ETHEREUM_URL }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Foundry | |
| uses: onbjerg/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: Install dependencies | |
| run: forge install | |
| - name: Run unit tests | |
| run: forge test --match-path test/unit/MultiToken.t.sol | |
| - name: Run integration tests | |
| run: forge test --match-path test/fork/MultiToken.fork.t.sol |