Kani CI #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From https://model-checking.github.io/kani/install-github-ci.html | |
name: Kani CI | |
on: | |
schedule: | |
- cron: '59 23 * * *' # midnight every day. | |
jobs: | |
run-kani: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: 'Checkout your code.' | |
uses: actions/checkout@v4 | |
- name: 'Run Kani on your code.' | |
uses: model-checking/[email protected] |