mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-06 04:01:23 +01:00
18 lines
408 B
YAML
18 lines
408 B
YAML
name: shellcheck
|
|
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
shell_check:
|
|
runs-on: ubuntu-latest
|
|
name: shellcheck
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install shellcheck
|
|
run: sudo apt update && sudo apt install -y shellcheck
|
|
- name: Check secrets scripts
|
|
run: cd bin && shellcheck deploy-hobby
|