chore(contracts): upgrade Solhint to 6 (#1064) #226
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: Examples | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| - release/* | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| - release/* | |
| permissions: {} # lock everything by default (least-privilege) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| FOUNDRY_PROFILE: ci | |
| jobs: | |
| build-examples: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: examples | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-env | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Show Foundry config | |
| run: forge config | |
| - name: Build Example Contracts | |
| run: forge build | |
| - name: Add build summary | |
| run: | | |
| echo "## Build result" >> $GITHUB_STEP_SUMMARY | |
| echo "✅ Examples Built Successfully" >> $GITHUB_STEP_SUMMARY | |
| test-contracts-examples: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: examples | |
| env: | |
| FOUNDRY_FUZZ_RUNS: 1000 | |
| needs: build-examples | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-env | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Run the unit tests | |
| run: forge test | |
| - name: Add test summary | |
| run: | | |
| echo "## Smart contracts examples unit tests result" >> $GITHUB_STEP_SUMMARY | |
| echo "✅ Passed" >> $GITHUB_STEP_SUMMARY |