fix comment #936
Workflow file for this run
This file contains hidden or 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: Test for memory leaks | |
| on: [push] | |
| jobs: | |
| test-memcheck: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0 | |
| with: | |
| ruby-version: '3.4' | |
| bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
| bundler: latest | |
| cache-version: v2 # bump this to invalidate cache | |
| - run: sudo apt-get update && (sudo apt-get install -y valgrind || sleep 5 && sudo apt-get install -y valgrind) && valgrind --version | |
| - run: bundle exec rake compile spec:ddcov_memcheck |