ci: use 'linux' runner label
Some checks failed
CI / gitleaks (push) Failing after 5s
CI / lint (push) Failing after 9s
CI / test (3.11) (push) Has been skipped
CI / test (3.12) (push) Has been skipped
CI / test (3.13) (push) Has been skipped
CI / build (push) Has been skipped

This commit is contained in:
user
2026-02-22 06:20:48 +01:00
parent 1744e7087f
commit 82f5984631

View File

@@ -7,7 +7,7 @@ on:
jobs:
gitleaks:
runs-on: linux:host
runs-on: linux
container:
image: ghcr.io/gitleaks/gitleaks:latest
options: --entrypoint ""
@@ -19,7 +19,7 @@ jobs:
run: gitleaks detect --source . --verbose
lint:
runs-on: linux:host
runs-on: linux
container:
image: python:3.13-alpine
steps:
@@ -30,7 +30,7 @@ jobs:
run: ruff check src/ tests/ plugins/
test:
runs-on: linux:host
runs-on: linux
needs: [lint]
strategy:
matrix:
@@ -47,7 +47,7 @@ jobs:
run: pytest -v
build:
runs-on: linux:host
runs-on: linux
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [gitleaks, test]
steps: