Skip to content

Adopt the common CI and tooling setup #3

Adopt the common CI and tooling setup

Adopt the common CI and tooling setup #3

Workflow file for this run

name: Shellcheck
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
permissions:
contents: read
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Lint shell scripts
run: make lint-shell