Skip to content

[move] essential formal verification tests on transfers #5

[move] essential formal verification tests on transfers

[move] essential formal verification tests on transfers #5

Workflow file for this run

name: formal verification
on:
push:
branches:
- "ci*"
- "prover*"
# tags:
# - '[0-9]+.[0-9]+.[0-9]+'
# - '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
pull_request:
types:
- opened
- synchronize
branches:
- 'release**'
- 'main'
jobs:
formal:
runs-on: ubuntu-latest
steps:
# NOTE: for debugging CI this allow shell access to github runner. Will print out tmate.io terminal url
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
with:
detached: true
timeout-minutes: 15
- uses: actions/checkout@v3
# - name: setup env
# uses: ./.github/actions/build_env
- name: install prover dependencies
run: >
bash util/dev_setup.sh -by
- name: install diem (for move tests)
run: >
wget -O ${{github.workspace}}/diem https://github.com/0LNetworkCommunity/diem/releases/latest/download/diem &&
sudo chmod 755 ${{github.workspace}}/diem
- name: prove
run: diem move prove -f version
working-directory: ./framework/libra-framework