Create valgrind.yml #1
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: Compile and Test with Valgrind | |
on: | |
push: null | |
jobs: | |
compile: | |
name: Compile C Project | |
uses: Vianpyro/Valgrind/.github/workflows/compile.yml@main # Reference the compile workflow | |
test-valgrind: | |
name: Test Memory Leaks with Valgrind | |
needs: compile | |
uses: Vianpyro/Valgrind/.github/workflows/valgrind.yml@main # Reference the Valgrind workflow | |