Skip to content

Commit 1883215

Browse files
committed
Update GitHub Actions
1 parent aae9ae8 commit 1883215

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed

.github/workflows/indent.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Indent
22
on:
3-
push:
4-
branches: [ master ]
3+
push: { branches: [ master ] }
54
pull_request:
65
workflow_dispatch:
76

@@ -10,22 +9,20 @@ jobs:
109
runs-on: ubuntu-latest
1110
steps:
1211
- name: Fetch source
13-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1413
- name: Install Vim
1514
uses: rhysd/action-setup-vim@v1
1615
with: { version: stable }
1716
- name: Run indentation tests
18-
run: EDITOR=vim do/test-indent
19-
working-directory: ./dev
17+
run: EDITOR=vim dev/do/test-indent
2018

2119
neovim-latest:
2220
runs-on: ubuntu-latest
2321
steps:
2422
- name: Fetch source
25-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2624
- name: Install Neovim
2725
uses: rhysd/action-setup-vim@v1
2826
with: { neovim: true, version: stable }
2927
- name: Run indentation tests
30-
run: EDITOR=nvim do/test-indent
31-
working-directory: ./dev
28+
run: EDITOR=nvim dev/do/test-indent

.github/workflows/syntax.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Syntax
22
on:
3-
push:
4-
branches:
5-
- master
3+
push: { branches: [ master ] }
64
pull_request:
75
workflow_dispatch:
86

@@ -15,7 +13,7 @@ jobs:
1513
with:
1614
clj-kondo: latest
1715

18-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1917

2018
- name: Lint
2119
working-directory: ./clj
@@ -24,7 +22,7 @@ jobs:
2422
test:
2523
runs-on: ubuntu-latest
2624
steps:
27-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2826
- uses: DeLaGuardo/[email protected]
2927
with:
3028
lein: 2.11.2

0 commit comments

Comments
 (0)