Skip to content

Commit bdc6187

Browse files
authored
Create cs.yml (#21)
* Create cs.yml * Update .editorconfig
1 parent 8f5e0d0 commit bdc6187

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ insert_final_newline = true
77
indent_style = space
88
indent_size = 4
99
trim_trailing_whitespace = true
10+
block_comment_start = /*
11+
block_comment = *
12+
block_comment_end = */
1013

1114
[*.md]
1215
trim_trailing_whitespace = false

.github/workflows/cs.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "Coding Standards"
2+
3+
on:
4+
push: null
5+
pull_request: null
6+
7+
jobs:
8+
coding_standards:
9+
name: "EditorConfig"
10+
runs-on: "ubuntu-20.04"
11+
steps:
12+
- name: "Checkout code"
13+
uses: "actions/checkout@v3"
14+
15+
- name: "Check adherence to EditorConfig"
16+
uses: "greut/eclint-action@v0"

0 commit comments

Comments
 (0)