Skip to content

Fix 2 bugs, remove 7 dead code blocks, add formal verification #10

Fix 2 bugs, remove 7 dead code blocks, add formal verification

Fix 2 bugs, remove 7 dead code blocks, add formal verification #10

Workflow file for this run

name: ReqProof Audit
on:
push:
branches: [main]
pull_request:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.13'
- name: Cache ReqProof solvers
uses: actions/cache@v4
with:
path: ~/.proof/solvers
key: proof-solvers-${{ runner.os }}
- name: Install ReqProof via Homebrew
run: |
brew tap probelabs/proof
brew install proof
proof version
- name: Run ReqProof Audit
run: |
set +e
proof audit --fail-level warn --format markdown | tee $GITHUB_STEP_SUMMARY
exit_code=$?
exit $exit_code