From a2fdca3afd61f9b6ad4e065563d029322a8da403 Mon Sep 17 00:00:00 2001 From: AdrianoDev Date: Tue, 28 Apr 2026 23:24:33 +0200 Subject: [PATCH] ci: clean runs-on syntax (runner stabile post crash-loop fix) Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitea/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8c51f02..c7adf17 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,7 +13,7 @@ env: jobs: lint: name: ruff lint - runs-on: [ubuntu-22.04] + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Install uv @@ -32,7 +32,7 @@ jobs: typecheck: name: mypy mcp_common - runs-on: [ubuntu-22.04] + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Install uv @@ -51,7 +51,7 @@ jobs: test: name: pytest - runs-on: [ubuntu-22.04] + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Install uv @@ -68,7 +68,7 @@ jobs: validate-config: name: validate compose + Caddyfile - runs-on: [ubuntu-22.04] + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -103,7 +103,7 @@ jobs: build-and-push: name: build & push to registry - runs-on: [ubuntu-22.04] + runs-on: ubuntu-22.04 needs: [lint, test, validate-config] if: github.event_name == 'push' && github.ref == 'refs/heads/main' permissions: