From 825f2ef85a7e040e031a0dbb93d31393ce914842 Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Fri, 19 Sep 2025 20:35:12 +0200 Subject: [PATCH] fixed workflow file references --- .gitea/workflows/test-templates.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test-templates.yml b/.gitea/workflows/test-templates.yml index 16dc234..f2d4749 100644 --- a/.gitea/workflows/test-templates.yml +++ b/.gitea/workflows/test-templates.yml @@ -128,7 +128,7 @@ jobs: EOF - name: Test Python code quality workflow - uses: ./ + uses: ./.gitea/workflows/python/code-quality.yml with: python-version: ${{ matrix.python-version }} working-directory: "./test-project" @@ -227,7 +227,7 @@ jobs: EOF - name: Test pytest workflow - uses: ./ + uses: ./.gitea/workflows/python/pytest.yml with: python-version: ${{ matrix.python-version }} working-directory: "./test-pytest-project" @@ -321,7 +321,7 @@ jobs: EOF - name: Test web formatting workflow - uses: ./ + uses: ./.gitea/workflows/web/formatting.yml with: node-version: ${{ matrix.node-version }} working-directory: "./test-web-project" @@ -379,13 +379,13 @@ jobs: EOF - name: Test backend code quality - uses: ./ + uses: ./.gitea/workflows/python/code-quality.yml with: working-directory: "./monorepo-test/backend" uv-extras: "dev" - name: Test frontend formatting - uses: ./ + uses: ./.gitea/workflows/web/formatting.yml with: working-directory: "./monorepo-test/frontend" @@ -418,7 +418,7 @@ jobs: EOF - name: Test with minimal configuration - uses: ./ + uses: ./.gitea/workflows/python/code-quality.yml with: working-directory: "./minimal-python" skip-mypy: true