Compare commits

...

10 Commits

Author SHA1 Message Date
benzjeremy
f96ae9f9a0 chore: remove obsolete CI workflow (ci.yml)
Some checks failed
CI (Arch Linux) / build (push) Has been cancelled
2026-09-17 10:50:04 +02:00
benzjeremy
e2d5260b4c fix(ci): remove go mod tidy step, use build/test/vet only 2026-09-17 09:43:30 +02:00
benzjeremy
b0bd48cf88 fix(ci): handle missing go.sum gracefully 2026-09-17 09:40:39 +02:00
benzjeremy
a1c87f8539 fix(ci): install GTK/WebKit packages for cgo build in Arch CI 2026-09-17 09:28:21 +02:00
benzjeremy
c1b46084d4 Add CI report 2026-09-16 23:26:58 +02:00
benzjeremy
ece1995ffb Add CI report 2026-09-16 23:26:45 +02:00
benzjeremy
9354a36ef6 Add CI report 2026-09-16 22:38:41 +02:00
benzjeremy
9795b06731 Add standardized CI pipeline & report 2026-09-16 22:21:30 +02:00
benzjeremy
28f9d1f918 Add CI report 2026-09-16 21:49:36 +02:00
benzjeremy
7f76da0142 Add CI report 2026-09-16 21:49:27 +02:00
3 changed files with 35 additions and 44 deletions

View File

@ -1,44 +0,0 @@
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update pacman and install base tools
run: |
pacman -Sy --noconfirm archlinux-keyring
pacman -S --noconfirm base-devel git go nodejs npm python-pip || true
- name: Build Go
run: go build ./... || true
- name: Test Go
run: go test -race ./... || true
- name: Install Node dependencies
run: npm ci || true
- name: Lint Node
run: npm run lint || true
- name: Test Node
run: npm test || true
- name: Install Python dependencies
run: pip install -r requirements.txt || true
- name: Lint Python
run: flake8 . || true
- name: Test Python
run: pytest || true

30
.github/workflows/ci_arch.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: CI (Arch Linux)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux:latest
env:
CGO_ENABLED: "0"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman -Sy --noconfirm git base-devel go
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Build
run: go build ./...
- name: Test
run: go test ./... -v
- name: Lint
run: go vet ./...

View File

@ -0,0 +1,5 @@
# CI Report
Commit: ece1995ffb9d9fd3a88447b69409b4db8128b35b
Standardisierte CI-Pipeline vorhanden.