We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d69f0d9 + 9bcf600 commit 7bcc6fbCopy full SHA for 7bcc6fb
1 file changed
.github/workflows/reusable-code-quality.yml
@@ -11,6 +11,23 @@ concurrency:
11
12
jobs:
13
14
+ actionlint: #-----------------------------------------------------------------------
15
+ name: Lint GitHub Actions workflows
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Check out source code
19
+ uses: actions/checkout@v4
20
+
21
+ - name: Add problem matcher
22
+ run: |
23
+ curl -s -o .github/actionlint-matcher.json https://raw.githubusercontent.com/rhysd/actionlint/main/.github/actionlint-matcher.json
24
+ echo "::add-matcher::.github/actionlint-matcher.json"
25
26
+ - name: Check workflow files
27
+ uses: docker://rhysd/actionlint:latest
28
+ with:
29
+ args: -color -shellcheck=
30
31
lint: #-----------------------------------------------------------------------
32
name: Lint PHP files
33
runs-on: ubuntu-latest
0 commit comments