File tree 2 files changed +8
-13
lines changed
2 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : Indent
2
2
on :
3
- push :
4
- branches : [ master ]
3
+ push : { branches: [ master ] }
5
4
pull_request :
6
5
workflow_dispatch :
7
6
10
9
runs-on : ubuntu-latest
11
10
steps :
12
11
- name : Fetch source
13
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
14
13
- name : Install Vim
15
14
uses : rhysd/action-setup-vim@v1
16
15
with : { version: stable }
17
16
- name : Run indentation tests
18
- run : EDITOR=vim do/test-indent
19
- working-directory : ./dev
17
+ run : EDITOR=vim dev/do/test-indent
20
18
21
19
neovim-latest :
22
20
runs-on : ubuntu-latest
23
21
steps :
24
22
- name : Fetch source
25
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
26
24
- name : Install Neovim
27
25
uses : rhysd/action-setup-vim@v1
28
26
with : { neovim: true, version: stable }
29
27
- name : Run indentation tests
30
- run : EDITOR=nvim do/test-indent
31
- working-directory : ./dev
28
+ run : EDITOR=nvim dev/do/test-indent
Original file line number Diff line number Diff line change 1
1
name : Syntax
2
2
on :
3
- push :
4
- branches :
5
- - master
3
+ push : { branches: [ master ] }
6
4
pull_request :
7
5
workflow_dispatch :
8
6
15
13
with :
16
14
clj-kondo : latest
17
15
18
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
19
17
20
18
- name : Lint
21
19
working-directory : ./clj
24
22
test :
25
23
runs-on : ubuntu-latest
26
24
steps :
27
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
28
26
-
uses :
DeLaGuardo/[email protected]
29
27
with :
30
28
lein : 2.11.2
You can’t perform that action at this time.
0 commit comments