We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a2b70 commit 09317fdCopy full SHA for 09317fd
.editorconfig
@@ -9,3 +9,6 @@ indent_size = 4
9
charset = utf-8
10
trim_trailing_whitespace = true
11
insert_final_newline = true
12
+
13
+[*.{yaml,yml}]
14
+indent_size = 2
.github/workflows/tests.yml
@@ -0,0 +1,22 @@
1
+---
2
+name: Tests
3
4
+on:
5
+ push: ~
6
+ pull_request: ~
7
8
+permissions:
+ contents: read
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
+ fetch-depth: 0
18
19
+ - name: Run ShellCheck
20
+ uses: ludeeus/action-shellcheck@master
21
+ with:
22
+ severity: style
0 commit comments