Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ concurrency:
jobs:
cpp-lint:
uses: ./.github/workflows/cpp-lint.yml
python-lint:
uses: ./.github/workflows/python-lint.yml
shell-lint:
uses: ./.github/workflows/shell-lint.yml
ubuntu:
needs:
- cpp-lint
- python-lint
- shell-lint
uses: ./.github/workflows/ubuntu.yml
mac:
needs:
- cpp-lint
- python-lint
- shell-lint
uses: ./.github/workflows/mac.yml
windows:
needs:
- cpp-lint
- python-lint
- shell-lint
uses: ./.github/workflows/windows.yml
perf:
needs:
Expand Down
37 changes: 0 additions & 37 deletions .github/workflows/python-lint.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/shell-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Shell Lint

on:
workflow_call:
push:
paths:
- '**/*.sh'
- '.github/workflows/shell-lint.yml'
pull_request:
paths:
- '**/*.sh'
- '.github/workflows/shell-lint.yml'

jobs:
shell-lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install shellcheck
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
- name: Run shellcheck
run: shellcheck scripts/*.sh
Loading