35 lines
774 B
YAML
Raw Normal View History

2023-03-30 19:14:34 +02:00
on:
2023-04-19 01:23:55 +02:00
[workflow_call]
2023-03-30 19:14:34 +02:00
push:
branches: [ master ]
2023-04-03 00:37:36 +02:00
paths-ignore:
2023-04-03 14:08:32 +02:00
- '**/*.md'
2023-04-16 06:24:15 +02:00
- '.gitignore'
- '.dockerignore'
2023-04-16 06:01:33 +02:00
- '.github/**'
- '.github/workflows/**'
2023-03-30 19:14:34 +02:00
pull_request:
branches: [ master ]
2023-04-03 00:37:36 +02:00
paths-ignore:
2023-04-03 14:08:32 +02:00
- '**/*.md'
2023-04-16 06:24:15 +02:00
- '.gitignore'
2023-04-16 06:27:16 +02:00
- '.dockerignore'
2023-04-16 06:00:46 +02:00
- '.github/**'
- '.github/workflows/**'
2023-03-30 19:14:34 +02:00
2023-03-30 20:22:20 +02:00
name: "Test"
2023-03-30 19:14:34 +02:00
permissions: {}
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
2023-03-30 19:28:45 +02:00
env:
2023-04-17 02:36:27 +02:00
SHELLCHECK_OPTS: -e SC2001 -e SC2002 -e SC2116 -e SC2034 -e SC1091 -e SC2143 -e SC2223 -e SC2086 -e SC2145 -e SC2015 -e SC2268 -e SC2207 -e SC2064 -e SC2162 -e SC2166