Create main.yml

This commit is contained in:
Dennis Eichhorn 2020-01-26 13:26:52 +01:00 committed by GitHub
parent e9b3813596
commit e2a02ec958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: CI/CD
on: [push]
jobs:
custom:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 3
steps:
- name: Checkout Repository
uses: actions/checkout@master
- name: Bash linting
run: find ./ -type f -name '*.sh' -print0 | xargs -0 -n1 -P4 bash -n | ( grep -v "syntax error" )