From e2a02ec9587dc97a62a619533090ef6a2b3f3822 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 26 Jan 2020 13:26:52 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..65359ba --- /dev/null +++ b/.github/workflows/main.yml @@ -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" )