|
| 1 | +name: certora-solvency |
| 2 | + |
| 3 | +concurrency: |
| 4 | + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} |
| 5 | + cancel-in-progress: true |
| 6 | + |
| 7 | +on: |
| 8 | + pull_request: |
| 9 | + branches: |
| 10 | + - main |
| 11 | + - certora |
| 12 | + push: |
| 13 | + branches: |
| 14 | + - main |
| 15 | + |
| 16 | + workflow_dispatch: |
| 17 | + |
| 18 | +jobs: |
| 19 | + verify: |
| 20 | + runs-on: ubuntu-latest |
| 21 | + if: |
| 22 | + github.event.pull_request.head.repo.full_name == github.repository || (github.event_name == 'push' && |
| 23 | + github.ref == format('refs/heads/{0}', github.event.repository.default_branch)) |
| 24 | + permissions: |
| 25 | + contents: read |
| 26 | + statuses: write |
| 27 | + pull-requests: write |
| 28 | + steps: |
| 29 | + - uses: actions/checkout@v4 |
| 30 | + with: |
| 31 | + submodules: recursive |
| 32 | + |
| 33 | + - name: Munged |
| 34 | + run: | |
| 35 | + cd certora/solvency |
| 36 | + touch applyHarness.patch |
| 37 | + make munged |
| 38 | +
|
| 39 | + - uses: Certora/certora-run-action@v1 |
| 40 | + with: |
| 41 | + cli-version: 7.31.0 |
| 42 | + configurations: |- |
| 43 | + certora/solvency/confs/rayMulDiv-CVL-check.conf |
| 44 | + certora/solvency/confs/aToken-check.conf |
| 45 | + certora/solvency/confs/variableDebtToken-check.conf |
| 46 | + certora/solvency/confs/solvency/supply.conf |
| 47 | + certora/solvency/confs/solvency/withdraw.conf |
| 48 | + certora/solvency/confs/solvency/borrow.conf |
| 49 | + certora/solvency/confs/solvency/flashloan.conf |
| 50 | + certora/solvency/confs/solvency/repay-lemma.conf |
| 51 | + certora/solvency/confs/solvency/repay-main.conf |
| 52 | + certora/solvency/confs/solvency/repayWithATokens-lemma.conf |
| 53 | + certora/solvency/confs/solvency/repayWithATokens-main.conf --rule_sanity "none" |
| 54 | + certora/solvency/confs/solvency/liquidationCall/lemma-revertsIF_totDbt_of_DBTasset_is0.conf |
| 55 | + certora/solvency/confs/solvency/liquidationCall/lemma-DBTasset.conf |
| 56 | + certora/solvency/confs/solvency/liquidationCall/main-DBTasset.conf |
| 57 | + certora/solvency/confs/solvency/liquidationCall/main-COLasset.conf |
| 58 | + certora/solvency/confs/solvency/liquidationCall/lemma-COLasset.conf --rule_sanity "none" |
| 59 | + certora/solvency/confs/solvency/liquidationCall/main-COLasset-totSUP0.conf --rule_sanity "none" |
| 60 | + certora/solvency/confs/solvency/liquidationCall/lemma-COLasset-totSUP0.conf |
| 61 | + certora/solvency/confs/solvency/liquidationCall/burnBadDebt-assetINloop.conf |
| 62 | + certora/solvency/confs/solvency/liquidationCall/burnBadDebt-assetNOTINloop.conf |
| 63 | + certora/solvency/confs/solvency/liquidationCall/main-SAMEasset.conf |
| 64 | + certora/solvency/confs/solvency/liquidationCall/lemma-SAMEasset.conf |
| 65 | + solc-versions: 0.8.27 |
| 66 | + comment-fail-only: false |
| 67 | + solc-remove-version-prefix: "0." |
| 68 | + job-name: "Certora Prover Run" |
| 69 | + certora-key: ${{ secrets.CERTORAKEY }} |
| 70 | + install-java: true |
| 71 | + env: |
| 72 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 73 | +# Put back the following rule after ticket 8889 is closed |
| 74 | +# certora/basic/conf/NEW-pool-no-summarizations.conf ##### waiting for |
| 75 | + |
0 commit comments