2023-03-30 19:14:34 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2023-04-03 00:37:36 +02:00
|
|
|
paths-ignore:
|
|
|
|
- '**/test.yml'
|
|
|
|
- '**/build.yml'
|
|
|
|
- '**/README.md'
|
|
|
|
- '**/docker-compose.yml'
|
2023-03-30 19:14:34 +02:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2023-04-03 00:37:36 +02:00
|
|
|
paths-ignore:
|
|
|
|
- '**/test.yml'
|
|
|
|
- '**/build.yml'
|
|
|
|
- '**/README.md'
|
|
|
|
- '**/docker-compose.yml'
|
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-02 22:56:04 +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
|
2023-04-02 22:43:57 +02:00
|
|
|
|