Build/.github/workflows/main.yml
Dennis Eichhorn 737f5b78cd fix tests
2023-09-25 15:54:41 +00:00

26 lines
613 B
YAML
Executable File

name: CI
on: [push, pull_request]
jobs:
linting:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'NO_CI')"
strategy:
fail-fast: false
max-parallel: 3
steps:
- name: Checkout Repository
uses: actions/checkout@main
with:
fetch-depth: 0
submodules: recursive
token: ${{ secrets.GH_PAT }}
- name: Lint Code Base
uses: github/super-linter/slim@v4
env:
VALIDATE_ALL_CODEBASE: false
FILTER_REGEX_EXCLUDE: .*Config/*
DEFAULT_BRANCH: develop
GITHUB_TOKEN: ${{ secrets.GH_PAT }}