Run SMTChecker #10
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: "Run SMTChecker" | |
on: "workflow_dispatch" | |
jobs: | |
run-smtchecker: | |
runs-on: "macos-latest" | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v3" | |
with: | |
submodules: "recursive" | |
- name: "Install Foundry" | |
uses: "foundry-rs/foundry-toolchain@v1" | |
- name: "Run SMTChecker and pipe the output to a file" | |
run: "FOUNDRY_PROFILE=smt forge build > smtchecker-report.txt" | |
- name: "Store the report as an artifact" | |
uses: "actions/upload-artifact@v3" | |
with: | |
name: smtchecker-report | |
path: "smtchecker-report.txt" |