Skip to content

Commit

Permalink
Add CI for shell scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Jul 12, 2024
1 parent 0c5aa7b commit 46a0529
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci-scripts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI for scripts

on:
push:
paths:
- 'scripts/**'

jobs:
test:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
run: |
docker run --rm -v "$PWD:/mnt" koalaman/shellcheck:stable scripts/*

0 comments on commit 46a0529

Please sign in to comment.