Skip to content

Commit

Permalink
Add notice to main
Browse files Browse the repository at this point in the history
  • Loading branch information
jaisnan committed Sep 27, 2023
1 parent 402266c commit 1db5fb8
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

This repository provides a GitHub Action for running the [Kani Rust Verifier](https://github.com/model-checking/kani) in CI.

⚠️ **Important Notice**: We will soon be moving the default branch from `main` to [`v1`](https://github.com/model-checking/kani-github-action/releases/tag/v1.0).
Please be aware that version `0.38` will be the final release on the `main` branch before the transition to stable.
Make sure to update your workflows and references accordingly.
We have added a new field called `kani-version` that will default to installing the latest version of `kani`.
To install a specific version of 'kani', please add a semver version to the field `kani-version` as shown in the example below.

Example:

```
jobs:
kani:
runs-on: ubuntu-latest
steps:
- name: Run Kani
uses: model-checking/kani-github-action@v1.0
with:
kani-version: '0.35.0'
command: 'cargo-kani'
working-directory: './path/to/project'
```

## Security

See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.
Expand All @@ -10,4 +31,3 @@ See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more inform

This code is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details.

0 comments on commit 1db5fb8

Please sign in to comment.