refactor: simplify bounds #814
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: Tests | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| contracts: | |
| name: Contracts | |
| runs-on: ubuntu-latest | |
| env: | |
| FOUNDRY_PROFILE: ci | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| cache: true | |
| - name: Show Foundry version | |
| run: forge --version | |
| - name: Install Bun | |
| uses: oven-sh/setup-bun@v1 | |
| - name: Show Bun version | |
| run: bun --version | |
| working-directory: ./contracts | |
| - name: Install Solhint | |
| run: bun install solhint | |
| working-directory: ./contracts | |
| - name: Run Solhint in `src` | |
| run: bunx --bun solhint --config .solhint.json 'src/**/*.sol' | |
| working-directory: ./contracts | |
| id: solhint-src | |
| - name: Run Solhint in `test` dir | |
| run: bunx --bun solhint --config .solhint.other.json 'test/**/*.sol' | |
| working-directory: ./contracts | |
| id: solhint-test | |
| - name: Run Solhint in `script` dir | |
| run: bunx --bun solhint --config .solhint.other.json 'script/**/*.sol' | |
| working-directory: ./contracts | |
| id: solhint-script | |
| - name: Run Forge build | |
| run: forge build --sizes --ast | |
| working-directory: ./contracts | |
| - name: Run Forge tests | |
| run: forge test -vvv --gas-report | |
| env: | |
| API_KEY_INFURA: ${{ secrets.API_KEY_INFURA }} | |
| API_KEY_ALCHEMY: ${{ secrets.API_KEY_ALCHEMY }} | |
| PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
| working-directory: ./contracts | |
| - name: Upload Contract Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: contract-artifacts | |
| path: ./contracts/out | |
| bindings: | |
| name: Bindings | |
| runs-on: ubuntu-latest | |
| needs: contracts | |
| env: | |
| PROTOCOL_ADAPTER_ADDRESS_SEPOLIA: ${{ vars.PROTOCOL_ADAPTER_ADDRESS_SEPOLIA }} | |
| API_KEY_INFURA: ${{ secrets.API_KEY_INFURA }} | |
| API_KEY_ALCHEMY: ${{ secrets.API_KEY_ALCHEMY }} | |
| PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Download Contract Artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: contract-artifacts | |
| path: ./contracts/out | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Show Rust version | |
| run: rustc --version | |
| - name: Restore dependencies cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| bindings/target | |
| key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Build Bindings | |
| run: cargo build --release | |
| working-directory: ./bindings | |
| - name: Run Tests | |
| run: cargo test --verbose | |
| working-directory: ./bindings |