test: contract artifact deserliazation integrity #17
Workflow file for this run
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
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
name: "Build documentation" | |
jobs: | |
build-doc: | |
name: "Build documentation" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout source code" | |
uses: "actions/checkout@v3" | |
- name: "Setup stable toolchain" | |
uses: "actions-rs/toolchain@v1" | |
with: | |
toolchain: "stable" | |
profile: "minimal" | |
override: true | |
- name: "Build docs" | |
run: | | |
RUSTDOCFLAGS="-D warnings -A rustdoc::missing-crate-level-docs" cargo doc --all |