Build/.github/workflows/main.yml
2020-01-26 13:26:52 +01:00

16 lines
335 B
YAML

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" )