Skip to content

Commit

Permalink
Add contest book (#6)
Browse files Browse the repository at this point in the history
Add initial book and a workflow to build / deploy the book. I also created a few other configurations that we were missing.

Co-authored-by: Jaisurya Nanduri <91620234+jaisnan@users.noreply.github.com>
  • Loading branch information
celinval and jaisnan authored Jun 4, 2024
1 parent 838f888 commit 05dca8f
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright Kani Contributors
# SPDX-License-Identifier: Apache-2.0 OR MIT

* @model-checking/kani-devs
10 changes: 10 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
> Please add a description of your PR.
> If this is a solution to an open challenge, please explain your solution.
>
> Don't forget to check our book to ensure your solution satisfy the overall
> requirements as well as the challenge success criteria.
>
Resolves #ISSUE-NUMBER

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright Kani Contributors
# SPDX-License-Identifier: Apache-2.0 OR MIT

# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Copyright Kani Contributors
# SPDX-License-Identifier: Apache-2.0 OR MIT

## File system
.DS_Store
desktop.ini

## Editor
*.swp
*.swo
Session.vim
.cproject
.idea
*.iml
.vscode
.project
.favorites.json
.settings/
*.orig
*.rej

## Build
/book/
/build/
/target
*.rlib
*.rmeta
*.mir

## Temporary files
*~
\#*
\#*\#
.#*

## Python
__pycache__/
*.py[cod]
*$py.class

## Node
node_modules
package-lock.json

# Tools
## Kani
*.out


# Added by cargo
#
# already existing elements were commented out

#/target

0 comments on commit 05dca8f

Please sign in to comment.