Skip to content

Added replacing script and admin_scripts dir #4

Added replacing script and admin_scripts dir

Added replacing script and admin_scripts dir #4

Workflow file for this run

name: kani_workflow
on:
push:
branches: [ main, kani_implementation ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: self-hosted
steps:
- name: Cleanup
run: |
ls -la
rm -rf ./* || true
rm -rf ./.??* || true
ls -la
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Run replace script
run: ./admin_scripts/replace.sh
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Bootstrap Toolchain
run: cargo bootstrap
- name: Run Kani
uses: model-checking/[email protected]
with:
args: '--workspace --exclude monitor -Z stubbing'