This repository has been archived by the owner on May 20, 2024. It is now read-only.
Trigger checks every week #5
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: Checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
# At 16:00 on Wednesday | |
- cron: "0 16 * * 3" | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: software-mansion/setup-scarb@v1 | |
with: | |
scarb-version: 2.3.0 | |
- uses: foundry-rs/setup-snfoundry@v2 | |
with: | |
starknet-foundry-version: latest | |
- run: snforge test |