fix: No problems found #6

Merged
jon merged 11 commits from fix-5-no-promlems-approve-pr into development 2025-07-12 14:11:41 +00:00
7 changed files with 160 additions and 44 deletions
Showing only changes of commit f10663a2d5 - Show all commits

View File

@ -13,16 +13,30 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Enable Matcher Service
run: |
echo "NFC_PROBLEM_MATCHER=${GITHUB_REF_NAME}";
- uses: actions/checkout@v3
- name: Install YAMLLint
run: pip install yamllint
- name: Run YAMLLint
run: |
echo "NFC_PROBLEM_MATCHER_TYPE=YAML-Lint"
yamllint -f github . || true
- name: Install Ansible-Lint
run: pip install ansible-lint
- name: Run Ansible-Lint
run: |
echo "NFC_PROBLEM_MATCHER_TYPE=pylint-json";
jon marked this conversation as resolved Outdated

Important

YAML-Lint Severity: error
file: .gitea/workflows/pull_request.yaml Line: 41 Column: 10

[indentation] wrong indentation: expected 10but found 9

> [!IMPORTANT] > > **YAML-Lint Severity:** _error_ > **file**: _.gitea/workflows/pull_request.yaml_ **Line**: _41_ **Column**: _10_ > > [indentation] wrong indentation: expected 10but found 9 >
ansible-lint -f json . || true