lint poller
Some checks failed
Build and Push Poller Docker Image / lint (push) Failing after 28s
Build and Push Poller Docker Image / build (push) Has been skipped

This commit is contained in:
2025-12-12 18:43:36 +01:00
parent ae73ecf68b
commit d7dd7a98fe
6 changed files with 222 additions and 330 deletions

View File

@@ -8,8 +8,24 @@ on:
- 'poller/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install 3.13
- name: Run lint
run: cd poller && make lint
build:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/checkout@v4