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
5 changes: 0 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,17 @@ concurrency:
jobs:
cpp-lint:
uses: ./.github/workflows/cpp-lint.yml
shell-lint:
uses: ./.github/workflows/shell-lint.yml
ubuntu:
needs:
- cpp-lint
- shell-lint
uses: ./.github/workflows/ubuntu.yml
mac:
needs:
- cpp-lint
- shell-lint
uses: ./.github/workflows/mac.yml
windows:
needs:
- cpp-lint
- shell-lint
uses: ./.github/workflows/windows.yml
perf:
needs:
Expand Down
24 changes: 0 additions & 24 deletions .github/workflows/shell-lint.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ repos:
hooks:
- id: yamllint

# Shell script linting with shellcheck
- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.10.0
hooks:
- id: shellcheck
files: \.sh$

# Configuration
default_stages: [pre-commit]
fail_fast: false
Loading