Skip to content

Commit

Permalink
Add docs task to check docs generation
Browse files Browse the repository at this point in the history
Signed-off-by: Heinz N. Gies <heinz@licenser.net>
  • Loading branch information
Licenser authored and mfelsche committed Apr 17, 2023
1 parent b5e93da commit d0ff561
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/doc-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check Docs

on:
pull_request:
branches: [main]
merge_group:
branches: [main]
push:
branches: [main]
jobs:
license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install deps
run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1; sudo apt-get clean
- uses: actions-rs/toolchain@v1
with:
profile: minimal
- uses: Swatinem/rust-cache@v2
- name: make docs
run: make docs

0 comments on commit d0ff561

Please sign in to comment.