1

Set up mdbook and tweak CI

This commit is contained in:
Evan Pratten 2023-08-03 11:50:51 -04:00
parent 3c01686b56
commit af023c0d23
7 changed files with 61 additions and 27 deletions

View File

@ -1,4 +1,4 @@
name: Security audit
name: Audit
on:
push:
@ -17,7 +17,8 @@ permissions:
contents: read
jobs:
security_audit:
rust_audit:
name: Rust Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

View File

@ -11,7 +11,7 @@ on:
jobs:
build_and_test:
name: Rust project
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -29,4 +29,4 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --release
args: --all --release

View File

@ -1,23 +0,0 @@
name: Clippy check
on:
push:
paths:
- '.github/workflows/clippy.yml'
- '**/Cargo.toml'
- '**/*.rs'
permissions:
checks: write
contents: read
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features

36
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: Lint
on:
push:
paths:
- '.github/workflows/lint.yml'
- '**/Cargo.toml'
- '**/*.rs'
permissions:
checks: write
contents: read
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install clippy
run: rustup component add clippy
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install rustfmt
run: rustup component add rustfmt
- name: Check formatting
run: cargo fmt --all --check

16
book.toml Normal file
View File

@ -0,0 +1,16 @@
[book]
authors = ["Evan Pratten"]
language = "en"
multilingual = false
src = "docs/book"
title = "Protomask Documentation"
[rust]
edition = "2021"
[build]
build-dir = "target/book"
create-missing = true
[output.html]
mathjax-support = true

3
docs/book/SUMMARY.md Normal file
View File

@ -0,0 +1,3 @@
# Summary
- [Chapter 1](./chapter_1.md)

1
docs/book/chapter_1.md Normal file
View File

@ -0,0 +1 @@
# Chapter 1