mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-16 20:28:02 +01:00
16 lines
232 B
YAML
16 lines
232 B
YAML
name: Shell validation check
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.sh'
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: shellcheck
|
|
run: ./scripts/shellcheck.sh
|
|
|