Skip to content

doc: add links to the manual (#705) #1487

doc: add links to the manual (#705)

doc: add links to the manual (#705) #1487

Workflow file for this run

on:
push:
branches: [main, dev]
pull_request:
name: valgrind
jobs:
cargo-valgrind:
name: Run valgrind
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-24.04]
rust:
- 1.82.0
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- uses: Swatinem/[email protected]
- run: sudo apt-get update -y
if: matrix.os == 'ubuntu-24.04'
- run: sudo apt-get install -y valgrind
if: matrix.os == 'ubuntu-24.04'
- run: cargo install cargo-valgrind
- name: run cargo valgrind --locked
run: |
cargo valgrind test --all-targets --all-features
- name: run cargo valgrind on doc tests
run: |
cargo valgrind test --doc --all-features