fixed tests
Test CI Templates / validate-syntax (push) Successful in 11s
Test CI Templates / test-python-code-quality (3.11) (push) Failing after 5s
Test CI Templates / test-python-pytest (true, 3.12) (push) Failing after 4s
Test CI Templates / test-web-formatting (true, false, 20) (push) Failing after 5s
Test CI Templates / test-python-code-quality (3.10) (push) Failing after 5s
Test CI Templates / test-python-code-quality (3.12) (push) Failing after 5s
Test CI Templates / test-python-code-quality (false, false, basic) (push) Failing after 5s
Test CI Templates / test-python-code-quality (false, true, skip-pyupgrade) (push) Failing after 5s
Test CI Templates / test-python-pytest (false, 3.11) (push) Failing after 5s
Test CI Templates / test-python-pytest (false, 3.12) (push) Failing after 5s
Test CI Templates / test-python-pytest (true, 3.11) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, false, 20) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, true, 18) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, true, 20) (push) Failing after 5s
Test CI Templates / test-web-formatting (true, false, 18) (push) Failing after 5s
Test CI Templates / test-monorepo (push) Failing after 5s
Test CI Templates / test-web-formatting (true, true, 18) (push) Failing after 5s
Test CI Templates / test-web-formatting (true, true, 20) (push) Failing after 5s
Test CI Templates / test-results (push) Successful in 2s
Test CI Templates / test-python-code-quality (true, false, skip-mypy) (push) Failing after 5s
Test CI Templates / test-web-formatting (false, false, 18) (push) Failing after 5s
Test CI Templates / test-edge-cases (push) Failing after 5s

This commit is contained in:
Brian Bjarke Jensen
2025-09-19 20:25:51 +02:00
parent 9abca60246
commit 243a5432d8
12 changed files with 225 additions and 173 deletions
+10 -4
View File
@@ -1,6 +1,7 @@
---
name: Web/General Formatting Pipeline
on:
"on":
workflow_call:
inputs:
working-directory:
@@ -33,6 +34,11 @@ on:
required: false
type: boolean
default: false
python-version:
description: 'Python version to use for YAML linting (e.g., "3.12")'
required: false
type: string
default: "3.12"
jobs:
formatting:
@@ -40,7 +46,7 @@ jobs:
defaults:
run:
working-directory: ${{ inputs.working-directory }}
steps:
- name: Checkout code
uses: actions/checkout@v4
@@ -68,7 +74,7 @@ jobs:
if: ${{ inputs.check-yaml }}
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: ${{ inputs.python-version }}
- name: Install yamllint
if: ${{ inputs.check-yaml }}
@@ -84,4 +90,4 @@ jobs:
find . -name "*.json" -type f | while read -r file; do
echo "Checking $file"
python -m json.tool "$file" > /dev/null
done
done