-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (51 loc) · 1.63 KB
/
Copy pathci.yml
File metadata and controls
55 lines (51 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: lint (ruff)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
- name: install ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: ruff check
# Lint-Baseline gesetzt (ruff.toml) -> blockierend. Seit 2026-07-10
# auch tests/ (die Gate-Schicht selbst war vorher ungelintet).
run: ruff check src tests
test:
name: test (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false # alle Versionen melden, nicht beim ersten Fehler abbrechen
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: requirements-dev.txt
- name: install
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: compile
run: python -m compileall src
- name: pytest (Korrektheits-Gates, ohne slow)
run: pytest -m "not slow"