fix: wrap oracle ABI encoding in tuple to match alloy's abi_decode #98
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: Git is clean | |
| on: [push] | |
| jobs: | |
| git-clean: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Install Nix 1/2 | |
| uses: DeterminateSystems/nix-installer-action@main | |
| with: | |
| determinate: true | |
| - name: Install Nix 2/2 | |
| uses: DeterminateSystems/flakehub-cache-action@main | |
| - name: Prepare Sushi Lib | |
| run: ./prep-sushi.sh | |
| - name: Install Dependencies | |
| run: nix develop -c npm install | |
| - name: Lint | |
| run: nix develop -c npm run lint | |
| - run: git diff --exit-code | |
| - uses: rainlanguage/github-chore/.github/actions/npm-blacklist@main |