Skip to content

Commit

Permalink
check if it works
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvol committed Dec 18, 2023
1 parent 3902e9c commit 734ba97
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/protocol_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,25 @@ jobs:
- name: Compile Contracts
run: forge compile

- name: Run tests
# can't use gas limit because some setUp function use more than the limit
run: forge test -vvv # --block-gas-limit 20000000
# - name: Run tests (all)
# # can't use gas limit because some setUp function use more than the limit
# #
# run: forge test -vvv --match-path --block-gas-limit 20000000

- name: Run tests common
run: forge test -vvv --match-path "test-sol/common/*" --block-gas-limit 20000000 # make it fail on purpose

- name: Run tests compatibility
if: success() || failure()
run: forge test -vvv --block-gas-limit 20000000 --match-path "test-sol/compatibility/*"

- name: Run tests governance/network
if: success() || failure()
run: forge test -vvv --block-gas-limit 20000000 --match-path "test-sol/governance/network/*"

- name: Run tests governance/network
if: success() || failure()
run: forge test -vvv --block-gas-limit 20000000 --match-path "test-sol/governance/network/*"


# common/ compatibility/ governance/network/ governance/validators/ governance/voting/ stability
File renamed without changes.

0 comments on commit 734ba97

Please sign in to comment.