Verification #1
This file contains hidden or 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: Verification | |
| # Only run this workflow when manually triggered | |
| on: | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| check: | |
| name: Verification Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install verus toolchains | |
| run: ./scripts/vinstall.sh | |
| - name: Format spec/proof code | |
| run: | | |
| verusfmt --check `find ./ -name *.verus.rs` --verus-only | |
| - name: Verify svsm with verus | |
| run: cargo verify | |
| working-directory: kernel | |
| - name: Verify extra proof libs with verus | |
| run: cargo verify | |
| working-directory: verify_proof |