Skip to content

Commit

Permalink
fix: update address book
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Nov 19, 2024
1 parent 803c9f8 commit d8270db
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
types:
- completed

permissions:
actions: read
issues: write
checks: read
statuses: read
pull-requests: write

jobs:
test:
uses: bgd-labs/github-workflows/.github/workflows/comment.yml@main
Expand Down
38 changes: 29 additions & 9 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,32 @@ on:

jobs:
test:
uses: bgd-labs/github-workflows/.github/workflows/foundry-test.yml@main
secrets: inherit
test-sol-zksync:
uses: bgd-labs/github-workflows/.github/workflows/foundry-test.yml@main
secrets: inherit
with:
mode: 'CHANGED'
zksync: true
ROOT_DIR: 'zksync'
name: Foundry build n test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: bgd-labs/action-rpc-env@main
with:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}

# we simply use foundry zk for all jobs in this repo
- name: Run Foundry setup
uses: bgd-labs/github-workflows/.github/actions/foundry-setup@main
with:
ZKSYNC: 'true'

- name: Run Forge tests
id: test
uses: bgd-labs/github-workflows/.github/actions/foundry-test@main
with:
mode: 'CHANGED'

- name: Run ZK tests
id: zktest
uses: bgd-labs/github-workflows/.github/actions/foundry-test@main
with:
ZKSYNC: true
mode: 'CHANGED'

0 comments on commit d8270db

Please sign in to comment.