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 d9d34a6 commit daf1bdfCopy full SHA for daf1bdf
.github/workflows/main.yml
@@ -0,0 +1,19 @@
1
+# Used to lint GitHub actions. https://github.com/rhysd/actionlint
2
+name: Actionlint
3
+
4
+on:
5
+ pull_request:
6
+ paths:
7
+ - '.github/**'
8
9
+jobs:
10
+ actionlint:
11
+ name: Action lint
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Check workflow files
16
+ run: |
17
+ bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
18
+ ./actionlint -color -ignore SC2129
19
+ shell: bash
0 commit comments