Fix missing read conversions in unittests. #67
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
name: Valgrind | |
on: | |
[push, pull_request, workflow_dispatch] | |
jobs: | |
valgrind: | |
name: Valgrind Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- run: sudo apt-get update | |
- run: sudo apt-get install valgrind | |
- run: cargo +nightly install cargo-valgrind | |
- run: cargo +nightly valgrind test --release | |
- run: cargo +nightly valgrind test --all-features --release |