Skip to content

Commit

Permalink
chaning yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMorami committed Sep 17, 2024
1 parent 476c8c6 commit 429e571
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/certora-stata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,28 @@ on:
branches:
- main
pull_request_target:
branches:
- main
types: [opened, synchronize]

workflow_dispatch:

jobs:
verify:
runs-on: ubuntu-latest

# Only run if the base branch is 'main'
if: github.event.pull_request.base.ref == 'main'

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
ref: ${{ github.event.pull_request.base.ref }}

# Checkout the forked code (to test the changes from the PR)
- name: Checkout forked code
run: |
git fetch origin +refs/pull/${{ github.event.pull_request.number }}/merge
git checkout -qf FETCH_HEAD
- name: Install python
uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion lib/solidity-utils
Submodule solidity-utils updated 29 files
+2 −2 .env.example
+0 −7 .github/workflows/merge-main.yml
+0 −7 .github/workflows/tests.yml
+0 −1 Makefile
+9 −10 foundry.toml
+75 −0 src-zksync/contracts/transparent-proxy/TransparentProxyFactoryZkSync.sol
+22 −0 src-zksync/contracts/transparent-proxy/interfaces/ITransparentProxyFactoryZkSync.sol
+1 −1 src/contracts/access-control/UpgradableOwnableWithGuardian.sol
+30 −4 src/contracts/transparent-proxy/TransparentProxyFactory.sol
+2 −19 src/contracts/transparent-proxy/TransparentProxyFactoryBase.sol
+6 −6 src/contracts/utils/ChainHelpers.sol
+0 −21 src/contracts/utils/PermissionlessRescuable.sol
+11 −4 src/contracts/utils/Rescuable.sol
+0 −32 src/contracts/utils/RescuableBase.sol
+0 −4 src/contracts/utils/ScriptUtils.sol
+0 −30 src/contracts/utils/interfaces/IPermissionlessRescuable.sol
+23 −3 src/contracts/utils/interfaces/IRescuable.sol
+0 −38 src/contracts/utils/interfaces/IRescuableBase.sol
+0 −4 src/mocks/ERC20.sol
+5 −5 test-zksync/TransparentProxyFactoryZkSync.t.sol
+0 −127 test/PermissionlessRescuable.t.sol
+1 −10 test/Rescuable.t.sol
+0 −7 test/Rescuable721.t.sol
+6 −6 test/UpgradableOwnableWithGuardian.t copy.sol
+0 −13 zksync/script/DeployTransparentProxyFactoryZkSync.s.sol
+0 −60 zksync/src/contracts/transparent-proxy/TransparentProxyFactoryZkSync.sol
+0 −10 zksync/src/contracts/transparent-proxy/interfaces/ITransparentProxyFactoryZkSync.sol
+0 −113 zksync/src/contracts/utils/ScriptUtilsZkSync.sol
+0 −10 zksync/src/contracts/utils/interfaces/ICreate2Factory.sol

0 comments on commit 429e571

Please sign in to comment.