You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
name: shellcheck
|
|
|
|
|
|
on:
|
|
|
push:
|
|
|
paths-ignore:
|
|
|
- '.github/workflows/*'
|
|
|
pull_request:
|
|
|
paths-ignore:
|
|
|
- '.github/workflows/*'
|
|
|
workflow_dispatch:
|
|
|
paths-ignore:
|
|
|
- '.github/workflows/*'
|
|
|
|
|
|
jobs:
|
|
|
lint:
|
|
|
runs-on: ubuntu-latest
|
|
|
if: github.ref == 'refs/heads/master' # run this job only for the master branch
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
- name: Lint check
|
|
|
uses: azohra/shell-linter@latest
|
|
|
with:
|
|
|
path: "getssl"
|