mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-11 11:48:40 +00:00
16 lines
335 B
YAML
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" )
|