Skip to content

Commit 9d672b6

Browse files
authored
Create code-lint.yml
Signed-off-by: ale5000 <15793015+ale5000-git@users.noreply.github.com>
1 parent 4160196 commit 9d672b6

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/code-lint.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
# SPDX-FileCopyrightText: NONE
3+
# SPDX-License-Identifier: CC0-1.0
4+
5+
name: "Code lint"
6+
permissions: {}
7+
on:
8+
push:
9+
paths:
10+
- "**"
11+
branches:
12+
- "**"
13+
tags:
14+
- "v*.*"
15+
pull_request:
16+
jobs:
17+
shellchecker:
18+
name: "ShellChecker"
19+
runs-on: ubuntu-latest
20+
timeout-minutes: 5
21+
permissions:
22+
contents: read # Needed to checkout the repository (only required for private repositories)
23+
24+
steps:
25+
- name: "Checkout sources"
26+
uses: actions/checkout@v6
27+
with:
28+
lfs: false
29+
- name: "ShellChecker"
30+
uses: a5k-actions/shellchecker@v0

0 commit comments

Comments
 (0)