Skip to content

Commit a80523c

Browse files
authored
Create editorconfig.yml
1 parent 8d9428b commit a80523c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/editorconfig.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: EditorConfig Checker
2+
3+
on:
4+
workflow_dispatch: # allows manual triggering
5+
inputs:
6+
create_release:
7+
description: 'Create new release'
8+
required: true
9+
type: boolean
10+
push:
11+
branches:
12+
- master
13+
pull_request:
14+
branches:
15+
- master
16+
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
19+
cancel-in-progress: true
20+
21+
jobs:
22+
editorconfig:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: editorconfig-checker/action-editorconfig-checker@v2
27+
with:
28+
version: v3.0.3
29+
- run: editorconfig-checker

0 commit comments

Comments
 (0)