Enrich unit tests with symbolic proofs #4
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: Verification | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
verify-wire: | |
runs-on: [macos-latest] | |
steps: | |
- name: 'Checkout your code.' | |
uses: actions/checkout@v3 | |
- name: 'Run Kani on TCP wire.' | |
uses: model-checking/[email protected] | |
with: | |
args: '--output-format=terse --verbose --harness wire::tcp::verification' | |
verify-socket: | |
runs-on: [macos-latest] | |
steps: | |
- name: 'Checkout your code.' | |
uses: actions/checkout@v3 | |
- name: 'Run Kani on TCP socket.' | |
uses: model-checking/[email protected] | |
with: | |
args: '--output-format=terse --verbose --harness socket::tcp::verification' |