An open API service indexing awesome lists of open source software.

https://github.com/solareenlo/42valgrind-action

GitHub Action for 42valgrind
https://github.com/solareenlo/42valgrind-action

42 42born2code 42cursus github-actions valgrind

Last synced: 6 months ago
JSON representation

GitHub Action for 42valgrind

Awesome Lists containing this project

README

          

# 42valgrind-action
This GitHub Action checks if your code passes valgrind leak checker, after each push.

## Usage
```yml
# .github/workflows/valgrind.yml
name:
on: [push, pull_request]

jobs:
valgrind:
runs-on: ubuntu-latest
name: 42valgrind
steps:
- uses: actions/checkout@v2
- name: 42valgrind Leak checker
uses: solareenlo/42valgrind-action@v1.0.3
with:
flags: 'sh test_valgrind.sh'
```

And, you may choose to add a badge to your repo by adding the below to your `README.md`:
```markdown
![](https://github.com///workflows//badge.svg)
```

## References
- [solareenlo/42valgrind-docker](https://github.com/solareenlo/42valgrind-docker)