Add functions which returns the user state is in module enabled or recovery is activated. #180
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
build: | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-build.yaml@main" | |
test-multi-account: | |
needs: ["build"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-multi-account.yaml@main" | |
with: | |
foundry-fuzz-runs: 5000 | |
foundry-profile: "test" | |
match-path: "test/**/*.sol" | |
test-simulate: | |
needs: ["build"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-simulate.yaml@main" | |
with: | |
foundry-fuzz-runs: 5000 | |
foundry-profile: "test" | |
match-path: "test/**/*.sol" |