-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #824 from sablier-labs/ci/run-fork-tests-periodically
ci: run fork tests only monday, wednesday and friday
- Loading branch information
Showing
2 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: "CI Fork tests" | ||
|
||
on: | ||
schedule: | ||
- cron: "0 3 * * 1,3,5" # at 3:00 AM UTC on Monday, Wednesday and Friday | ||
|
||
jobs: | ||
lint: | ||
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-lint.yml@main" | ||
|
||
build: | ||
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-build.yml@main" | ||
|
||
test-fork: | ||
needs: ["lint", "build"] | ||
secrets: | ||
RPC_URL_MAINNET: ${{ secrets.RPC_URL_MAINNET }} | ||
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | ||
with: | ||
foundry-fuzz-runs: 100 | ||
foundry-profile: "test-optimized" | ||
fuzz-seed: true | ||
match-path: "test/fork/**/*.sol" | ||
name: "Fork tests" |
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