There was an error while loading. Please reload this page.
2 parents a6496c9 + bf398eb commit bd70a00Copy full SHA for bd70a00
2 files changed
.github/workflows/markdownlint.yml
@@ -0,0 +1,15 @@
1
+name: Markdown Lint
2
+on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
7
+ workflow_dispatch:
8
+jobs:
9
+ markdownlint:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: DavidAnson/markdownlint-cli2-action@v19
14
+ with:
15
+ globs: "**/*.md"
.github/workflows/shellcheck.yml
@@ -0,0 +1,19 @@
+name: Shellcheck
+ shellcheck:
+ - run: |
+ if compgen -G "**/*.sh" > /dev/null; then
+ sudo apt-get update && sudo apt-get install -y shellcheck
16
+ find . -name "*.sh" -print0 | xargs -0 shellcheck
17
+ else
18
+ echo "No shell scripts; skipping"
19
+ fi
0 commit comments