Skip to content

Commit 7bcc6fb

Browse files
authored
Merge pull request #111 from tfrommen/patch-1
2 parents d69f0d9 + 9bcf600 commit 7bcc6fb

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/reusable-code-quality.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,23 @@ concurrency:
1111

1212
jobs:
1313

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+
1431
lint: #-----------------------------------------------------------------------
1532
name: Lint PHP files
1633
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)