Merge pull request #733 from leecannon/dont_always_run_ci

Only run CI workflow if a zig file changed
This commit is contained in:
Alexandros Naskos 2022-11-02 18:35:38 +02:00 committed by GitHub
commit 0c3d5df583
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,13 @@ name: CI
on:
push:
paths:
- "**.zig"
pull_request:
paths:
- "**.zig"
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"
workflow_dispatch:
jobs: