Skip to content

update versions

update versions #47

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 --rm --user root
steps:
- uses: actions/checkout@v6
- run: |
pymwp --version ; dafny --version ; coqc --version
pymwp --info examples/original_paper/example3_1_b.c
(cd code && coqc equiv.v && dafny verify equiv.dfy)