🔥 Changed static/call in safe7579 to use direct call to handler #142
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
on: | |
- push | |
- pull_request | |
jobs: | |
lint-modulekit: | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/modulekit" | |
build-modulekit: | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/modulekit" | |
lint-safe7579: | |
needs: ["lint-modulekit"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/safe7579" | |
test-safe7579: | |
needs: ["build-modulekit"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/safe7579" | |
lint-sessionkeymanager: | |
needs: ["lint-modulekit"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/sessionkeymanager" | |
test-sessionkeymanager: | |
needs: ["build-modulekit"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/sessionkeymanager" | |
lint-modulekit-examples: | |
needs: ["lint-modulekit"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-lint-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/modulekit-examples" | |
test-modulekit-examples: | |
needs: ["build-modulekit"] | |
uses: "rhinestonewtf/reusable-workflows/.github/workflows/forge-test-workspaces.yaml@main" | |
with: | |
match-workspace: "@rhinestone/modulekit-examples" |