Skip to content

update readme

update readme #56

Workflow file for this run

name: Artifact run
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: '0 0 1 * *'
push:
branches: [ main ]
workflow_dispatch:
jobs:
exec_test:
name: Runtime test
runs-on: ubuntu-22.04
container:
image: ghcr.io/nkrusch/dissertation:artifact
options: --platform=linux/amd64
steps:
- run: |
cd /usr/dissertation
pymwp --version ; dafny --version ; coqc --version
pymwp --info examples/original_paper/example3_1_b.c
(cd code && coqc equiv.v && dafny verify equiv.dfy)