Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/lint-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Lint install script

on:
push:
paths:
- 'install.sh'
- '.github/workflows/lint-install.yml'
pull_request:
paths:
- 'install.sh'
- '.github/workflows/lint-install.yml'

permissions:
contents: read

jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Check bash syntax
run: bash -n install.sh
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@00b27aa7cb85167568cb48a3838b75f4265f2bca
with:
scandir: '.'
version: v0.11.0
Loading