1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
---
name: Shellcheck
permissions: {}
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
additional_files: >-
taead
tbasic
tcerts
tcms
tdemoca
tdigest
tecc
tecdh
tecxc
tedwards
test-wrapper
tforking
thkdf
timported
tmldsa
toaepsha2
top_state
tpem_encoder
tpinlock
tpubkey
trand
trsa
trsapss
trsapssam
tskey
ttls
ttlsfuzzer
turi
check_together: 'yes'
env:
# The expressions in the ossl macro are not expanded
# We use tests as default source path
SHELLCHECK_OPTS: -e SC2016 -P tests
|