test: Add explicit tests of empty bitflags types (#527) #934
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: [main, dev] | |
pull_request: | |
name: valgrind | |
jobs: | |
cargo-valgrind: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust: | |
- stable | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.11.0 | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
- run: sudo apt-get update -y | |
if: matrix.os == 'ubuntu-latest' | |
- run: sudo apt-get install -y valgrind | |
if: matrix.os == 'ubuntu-latest' | |
- run: cargo install cargo-valgrind | |
- name: run cargo valgrind | |
run: | | |
cargo valgrind test --all-targets --all-features | |
- name: run cargo valgrind on doc tests | |
run: | | |
cargo valgrind test --doc --all-features |