Skip to content

Fix the audit workflow by generating cargo lock during the audit process #2

Fix the audit workflow by generating cargo lock during the audit process

Fix the audit workflow by generating cargo lock during the audit process #2

Workflow file for this run

on:
push:
branches:
- main
name: Docs
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Install build dependencies
run: |
sudo apt update
sudo apt install -y cmake libclang-dev
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run cargo doc
run: cargo doc --no-deps --all-features