-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69cbde4
commit 01d49c5
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ runs: | |
- name: Install Rust | ||
uses: actions-rs/[email protected] | ||
with: | ||
# From https://github.com/model-checking/kani/blob/kani-0.16.0/rust-toolchain.toml | ||
# From https://github.com/model-checking/kani/blob/kani-0.17.0/rust-toolchain.toml | ||
# Should be updated every time we update the version to keep in sync. | ||
# This should be automated https://github.com/model-checking/kani-github-action/issues/9 | ||
toolchain: nightly-2022-11-20 | ||
|
@@ -38,7 +38,7 @@ runs: | |
- name: Install Kani | ||
shell: bash | ||
run: | | ||
export KANI_VERSION="0.16.0"; | ||
export KANI_VERSION="0.17.0"; | ||
cargo install --version $KANI_VERSION --locked kani-verifier; | ||
cargo-kani setup; | ||
|