Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure GitHub Actions to run tests with valgrind every night instead of every pull request #552

Merged
merged 7 commits into from
Jan 5, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "TEMPORARILY change it"
This reverts commit 1955d56.
Akuli committed Jan 5, 2025
commit 55d7feff47c35a58d9b99d051c4375fd4763c9e3
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
# Do not valgrind when there's nothing new to valgrind in the repo
- name: Check if there was any commits within the last 24 hours
run: |
if git log --oneline --since="1 minutes ago" --name-only --pretty=format: | grep -q '.'; then
if git log --oneline --since="24 hours ago" --name-only --pretty=format: | grep -q '.'; then
echo "recent_commits=true" >> $GITHUB_ENV
else
echo "No commits, will not run valgrind"