Skip to content

Commit

Permalink
Refactor CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Feb 11, 2025
1 parent 0b30ede commit 16ee346
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 29 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/format.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/lint-shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on:
push:
paths:
- '**/*.{sh,bash,fish}'
- './bin/*'
- './scripts/git/pre-commit'
- './src/llvm/ext/find-llvm-config'
- '.github/workflows/lint-shellcheck.yml'
pull_request:
paths:
- '**/*.{sh,bash,fish}'
- './bin/*'
- './scripts/git/pre-commit'
- './src/llvm/ext/find-llvm-config'
- '.github/workflows/lint-shellcheck.yml'

name: "Lint Shellcheck"
permissions: {}

jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu:24.04
steps:
- run: shellcheck --version
- uses: actions/checkout@v4
- run: make lint-shellcheck

0 comments on commit 16ee346

Please sign in to comment.