fixed using reusable workflows
Code Quality Pipeline / Setup Python and UV dependencies (pull_request) Successful in 17s
Code Quality Pipeline / code-quality (pull_request) Failing after 4s
Test Python Package / Setup Python and UV dependencies (pull_request) Successful in 18s
Test Python Package / test (pull_request) Failing after 3s
Type Check / Setup Python and UV dependencies (pull_request) Successful in 17s
Type Check / type-check (pull_request) Failing after 4s

This commit is contained in:
Brian Bjarke Jensen
2025-08-28 20:25:21 +02:00
parent 2fe23cc438
commit cb036da997
6 changed files with 36 additions and 25 deletions
+5 -4
View File
@@ -7,14 +7,15 @@ on:
pull_request: pull_request:
jobs: jobs:
code-quality: setup-python-uv-dependencies:
runs-on: ubuntu-latest name: Setup Python and UV dependencies
steps:
- name: Setup Python and UV dependencies
uses: ./.gitea/workflows/setup-python-uv-dependencies.yml uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
with: with:
python-version: ${{ vars.PYTHON_VERSION }} python-version: ${{ vars.PYTHON_VERSION }}
code-quality:
runs-on: ubuntu-latest
steps:
- name: Ruff lint - name: Ruff lint
run: ruff check . run: ruff check .
+5 -4
View File
@@ -6,14 +6,15 @@ on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
renovate-like: setup-python:
runs-on: ubuntu-latest name: Setup Python
steps:
- name: Setup Python
uses: ./.gitea/workflows/setup-python.yml uses: ./.gitea/workflows/setup-python.yml
with: with:
python-version: ${{ vars.PYTHON_VERSION }} python-version: ${{ vars.PYTHON_VERSION }}
renovate-like:
runs-on: ubuntu-latest
steps:
- name: Install uv and pip-review - name: Install uv and pip-review
run: | run: |
pip install uv pip-review pip install uv pip-review
+6
View File
@@ -8,6 +8,12 @@ on:
- "v*.*.*" - "v*.*.*"
jobs: jobs:
setup-python:
name: Setup Python
uses: ./.gitea/workflows/setup-python.yml
with:
python-version: ${{ vars.PYTHON_VERSION }}
build-and-publish: build-and-publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
+5 -4
View File
@@ -6,13 +6,14 @@ on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
safety: setup-python-uv-dependencies:
runs-on: ubuntu-latest name: Setup Python and UV dependencies
steps:
- name: Setup Python and UV dependencies
uses: ./.gitea/workflows/setup-python-uv-dependencies.yml uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
with: with:
python-version: ${{ vars.PYTHON_VERSION }} python-version: ${{ vars.PYTHON_VERSION }}
safety:
runs-on: ubuntu-latest
steps:
- name: Run safety check - name: Run safety check
run: safety check run: safety check
+5 -4
View File
@@ -7,14 +7,15 @@ on:
pull_request: pull_request:
jobs: jobs:
test: setup-python-uv-dependencies:
runs-on: ubuntu-latest name: Setup Python and UV dependencies
steps:
- name: Setup Python and UV dependencies
uses: ./.gitea/workflows/setup-python-uv-dependencies.yml uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
with: with:
python-version: ${{ vars.PYTHON_VERSION }} python-version: ${{ vars.PYTHON_VERSION }}
test:
runs-on: ubuntu-latest
steps:
- name: Run pytest - name: Run pytest
env: env:
PYTHONPATH: . PYTHONPATH: .
+5 -4
View File
@@ -7,13 +7,14 @@ on:
pull_request: pull_request:
jobs: jobs:
type-check: setup-python-uv-dependencies:
runs-on: ubuntu-latest name: Setup Python and UV dependencies
steps:
- name: Setup Python and UV dependencies
uses: ./.gitea/workflows/setup-python-uv-dependencies.yml uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
with: with:
python-version: ${{ vars.PYTHON_VERSION }} python-version: ${{ vars.PYTHON_VERSION }}
type-check:
runs-on: ubuntu-latest
steps:
- name: Run mypy - name: Run mypy
run: mypy monitor_utils run: mypy monitor_utils