mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 17:18:30 +01:00
Restrict CI to changes that will cause recompiles
This commit is contained in:
parent
149b9b9821
commit
bdc3550a0d
1 changed files with 10 additions and 1 deletions
11
.github/workflows/check.yml
vendored
11
.github/workflows/check.yml
vendored
|
@ -1,11 +1,20 @@
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "cli/**"
|
||||||
|
- "lib/**"
|
||||||
|
- "/Cargo.*"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- try/**
|
- try/**
|
||||||
tags-ignore:
|
tags-ignore:
|
||||||
- "*.*.*"
|
- "cli-v*.*.*"
|
||||||
|
paths:
|
||||||
|
- "cli/**"
|
||||||
|
- "lib/**"
|
||||||
|
- "/Cargo.*"
|
||||||
|
- ".github/**"
|
||||||
|
|
||||||
name: Checks & Tests
|
name: Checks & Tests
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue