mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-22 15:17:08 +01:00
19 lines
349 B
YAML
19 lines
349 B
YAML
name: "[Check]: Shell validation"
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**.sh"
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: shellcheck
|
|
run: ./scripts/shellcheck.sh
|