Skip to content

Commit 14f79c4

Browse files
committed
[CI] Remove python checks from python-lint.yml
Duplicated with pre-commit.yml
1 parent 63a5666 commit 14f79c4

2 files changed

Lines changed: 24 additions & 37 deletions

File tree

.github/workflows/python-lint.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/shell-lint.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Shell Lint
2+
3+
on:
4+
workflow_call:
5+
push:
6+
paths:
7+
- '**/*.sh'
8+
- '.github/workflows/shell-lint.yml'
9+
pull_request:
10+
paths:
11+
- '**/*.sh'
12+
- '.github/workflows/shell-lint.yml'
13+
14+
jobs:
15+
shell-lint:
16+
runs-on: ubuntu-24.04
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Install shellcheck
20+
run: |
21+
sudo apt-get update
22+
sudo apt-get install -y shellcheck
23+
- name: Run shellcheck
24+
run: shellcheck scripts/*.sh

0 commit comments

Comments
 (0)