Skip to content
Open
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,22 @@ jobs:
persist-credentials: false
- uses: crate-ci/typos@626c4bedb751ce0b7f03262ca97ddda9a076ae1c # v1

shellcheck:
runs-on: depot-ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: reviewdog/action-shellcheck@90b8cde5f78a0ca946391250a4a94ff7731bd758
with:
reporter: github-pr-review
path: .
pattern: '*.sh'
exclude: "./.git/*"

clippy:
runs-on: depot-ubuntu-latest
timeout-minutes: 30
Expand Down
Loading