mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-13 05:42:59 +00:00
22 lines
414 B
YAML
22 lines
414 B
YAML
|
name: Script
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- "script/**"
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
shellcheck:
|
||
|
name: "ShellCheck Scripts"
|
||
|
if: github.repository_owner == 'zed-industries'
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||
|
- name: Shellcheck ./scripts
|
||
|
run: |
|
||
|
./script/shellcheck-scripts error
|