Don't run ci and valgrind for non-code changes when pushing to master

This commit is contained in:
Saúl Ibarra Corretgé 2024-09-25 22:31:58 +02:00
parent 7cfedb0952
commit 7e82ad80c1
2 changed files with 17 additions and 1 deletions

View file

@ -6,13 +6,21 @@ on:
- '**'
- '!.gitignore'
- '!LICENSE'
- '!TODO'
- '!README.md'
- '!docs/**'
- '!examples/**'
- '.github/workflows/ci.yml'
push:
branches:
- master
paths:
- '**'
- '!.gitignore'
- '!LICENSE'
- '!README.md'
- '!docs/**'
- '!examples/**'
- '.github/workflows/ci.yml'
jobs:
codegen:

View file

@ -4,6 +4,14 @@ on:
push:
branches:
- master
paths:
- '**'
- '!.gitignore'
- '!LICENSE'
- '!README.md'
- '!docs/**'
- '!examples/**'
- '.github/workflows/valgrind.yml'
workflow_dispatch:
jobs: