Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: custom submodules fetching #13

Merged
merged 10 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/certora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
name: Certora verification

on:
push: {}
pull_request:
types: [opened, synchronize, reopened, edited]
workflow_dispatch: {}
permissions:
contents: read
Expand All @@ -15,8 +16,8 @@ jobs:
# check out the current version
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true

# install Certora dependencies and CLI
- name: Install python
Expand Down
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std@ae570fec082bfe1c1f45b0acca4a2b4f84d345ce
url = https://github.com/foundry-rs/forge-std
[submodule "lib/solmate"]
path = lib/solmate
url = https://github.com/transmissions11/solmate@c892309933b25c03d32b1b0d674df7ae292ba925
url = https://github.com/transmissions11/solmate
[submodule "lib/ethereum-vault-connector"]
path = lib/ethereum-vault-connector
url = https://github.com/euler-xyz/ethereum-vault-connector@659d31512f259d6744ec5129841bbeefe285651b
url = https://github.com/euler-xyz/ethereum-vault-connector
2 changes: 1 addition & 1 deletion lib/forge-std
Loading