File tree 2 files changed +18
-4
lines changed
2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright Kani Contributors
2
2
# SPDX-License-Identifier: Apache-2.0 OR MIT
3
+
4
+ # This workflow is responsible for building and releasing the contest book.
5
+ # It should only run when there has been a change to the contest book files
6
+ # or via manual trigger.
7
+
3
8
name : Build Book
4
9
on :
10
+ workflow_dispatch :
5
11
pull_request :
6
12
paths :
7
13
- ' doc/**'
@@ -17,16 +23,18 @@ jobs:
17
23
uses : actions/checkout@v4
18
24
19
25
- name : Install mdbook
20
- run : cargo install mdbook --version "^0.4" --locked
26
+ run : |
27
+ cargo install mdbook --version "^0.4" --locked
28
+ echo "${HOME}/.cargo/bin" >> $GITHUB_PATH
21
29
22
30
- name : Install linkchecker
23
- run : cargo install mdbook-linkcheck " 0.7" --locked
31
+ run : cargo install mdbook-linkcheck --version "^ 0.7" --locked
24
32
25
33
- name : Build Documentation
26
- run : mkdbook build doc
34
+ run : mdbook build doc
27
35
28
36
- name : Upload book
29
- uses : actions/upload-pages-artifact@v4
37
+ uses : actions/upload-pages-artifact@v3
30
38
with :
31
39
path : book/html
32
40
retention-days : " 2"
Original file line number Diff line number Diff line change 1
1
# Kani Rust Verifier
2
+
3
+ The Kani Rust Verifier is a bit-precise model checker for Rust.
4
+ This page will give more details on how to use Kani to verify the standard library.
5
+ You can find more informations about how to install and use Kani in the
6
+ [ Kani book] ( https://model-checking.github.io/kani/ ) .
7
+
You can’t perform that action at this time.
0 commit comments