fix: Update solidity-utils with XLayer network #27
Workflow file for this run
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: certora-math-calculations | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - certora | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| if: | |
| github.event.pull_request.head.repo.full_name == github.repository || (github.event_name == 'push' && | |
| github.ref == format('refs/heads/{0}', github.event.repository.default_branch)) | |
| permissions: | |
| contents: read | |
| statuses: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Munged | |
| run: | | |
| cd certora/math-calculations | |
| touch applyHarness.patch | |
| make munged | |
| - uses: Certora/certora-run-action@v1 | |
| with: | |
| cli-version: 7.31.0 | |
| configurations: |- | |
| certora/math-calculations/confs/rayMulDiv-CVL-check.conf | |
| certora/math-calculations/confs/gift_cannot_decrease_healthFactor.conf | |
| solc-versions: 0.8.27 | |
| comment-fail-only: false | |
| solc-remove-version-prefix: "0." | |
| job-name: "Certora Prover Run" | |
| certora-key: ${{ secrets.CERTORAKEY }} | |
| install-java: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Put back the following rule after ticket 8889 is closed | |
| # certora/basic/conf/NEW-pool-no-summarizations.conf ##### waiting for | |