small fixes and add the n2c to the workspace properly #270
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test documentation | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Setup" | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: "Compile documentation" | |
uses: actions-rs/cargo@v1 | |
env: | |
RUSTDOCFLAGS: "-Dwarnings" | |
with: | |
command: doc | |
args: --no-deps |