Skip to content

Commit e5f86af

Browse files
committedJan 26, 2025·
New indentation test runner
1 parent 8e9ed28 commit e5f86af

File tree

48 files changed

+121
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+121
-97
lines changed
 

Diff for: ‎.github/workflows/indent.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Indent
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
vim-latest:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Fetch source
13+
uses: actions/checkout@v3
14+
- name: Install Vim
15+
uses: rhysd/action-setup-vim@v1
16+
with: { version: stable }
17+
- name: Run indentation tests
18+
run: EDITOR=vim do/test-indent
19+
working-directory: ./dev
20+
21+
neovim-latest:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Fetch source
25+
uses: actions/checkout@v3
26+
- name: Install Neovim
27+
uses: rhysd/action-setup-vim@v1
28+
with: { neovim: true, version: stable }
29+
- name: Run indentation tests
30+
run: EDITOR=nvim do/test-indent
31+
working-directory: ./dev

Diff for: ‎.github/workflows/clojure.yml renamed to ‎.github/workflows/syntax.yml

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Syntax
22
on:
33
push:
44
branches:
@@ -29,17 +29,6 @@ jobs:
2929
with:
3030
lein: 2.11.2
3131

32-
- name: Install Vim
33-
uses: rhysd/action-setup-vim@v1
34-
with:
35-
version: stable
36-
37-
- name: Install Neovim
38-
uses: rhysd/action-setup-vim@v1
39-
with:
40-
neovim: true
41-
version: stable
42-
4332
- name: Cache m2
4433
uses: actions/cache@v3
4534
env:

0 commit comments

Comments
 (0)