diff options
Diffstat (limited to '.github/workflows/dwarvish.yml')
-rw-r--r-- | .github/workflows/dwarvish.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/dwarvish.yml b/.github/workflows/dwarvish.yml index 153b304..3991a06 100644 --- a/.github/workflows/dwarvish.yml +++ b/.github/workflows/dwarvish.yml @@ -1,6 +1,24 @@ on: [push, pull_request] name: Dwarvish Source Analysis jobs: + document: + name: Document + runs-on: ubuntu-latest + steps: + - name: Checkout source + uses: actions/checkout@v4 + + - name: Install Rust stable + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + - name: Run cargo doc + uses: actions-rs/cargo@v1 + with: + command: doc verify: name: Verify runs-on: ubuntu-latest |