-
Notifications
You must be signed in to change notification settings - Fork 0
/
.watch.yaml
50 lines (45 loc) · 918 Bytes
/
.watch.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
## Funzzy events file
# more details see: https://github.com/cristianoliveira/funzzy
#
# list here all the events and the commands that it should execute
- name: run my test
run: 'make test'
run_on_init: true
change:
- '**/*.vim'
- '**/*.lua'
- name: run my linter
run: 'make lint'
run_on_init: true
change:
- '**/*.vim'
- '**/*.lua'
- name: build with nix
run:
- nix flake check
- nix build .#funzzy_nvim --verbose -L
# - nix flake update
run_on_init: true
change:
- '**/*.sh'
- '**/*.nix'
- '**/*.vim'
- '**/*.lua'
- name: generate helptags
run: 'make helptags'
run_on_init: true
change:
- '**/*.txt'
- '**/*.vim'
- '**/*.lua'
- name: git stage changed files
run:
- git add {{relative_filepath}}
change:
- 'doc/tags'
- '**/*.txt'
- '**/*.sh'
- '**/*.nix'
- '**/*.md'
- '**/*.vim'
- '**/*.lua'