Skip to content

Commit

Permalink
kani github actions workflow added
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Aghili committed Oct 7, 2024
1 parent 891979d commit f8ebdcb
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/kani-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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: 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]
# x86_64 is the default, builds in debug mode

0 comments on commit f8ebdcb

Please sign in to comment.