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
- Host: GitHub
- URL: https://github.com/solareenlo/42valgrind-action
- Owner: solareenlo
- Created: 2021-11-19T14:42:20.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-20T05:04:30.000Z (over 4 years ago)
- Last Synced: 2024-12-30T09:15:25.203Z (over 1 year ago)
- Topics: 42, 42born2code, 42cursus, github-actions, valgrind
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

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