Compare commits

...

10 Commits

Author SHA1 Message Date
benzjeremy
b498acab1c ci: fix Go version to 1.27 matching go.mod
Some checks failed
CI (Arch Linux) / build (push) Has been cancelled
2026-09-17 22:56:58 +02:00
benzjeremy
c41bc1fedd chore: remove obsolete CI workflow (ci.yml) 2026-09-17 10:35:54 +02:00
benzjeremy
65d3b0636c fix(ci): remove go mod tidy step, use build/test/vet only 2026-09-17 09:43:38 +02:00
benzjeremy
2d7ed83512 fix(ci): handle missing go.sum gracefully 2026-09-17 09:40:45 +02:00
benzjeremy
44f732dcbe fix(ci): use Go-only Arch CI workflow 2026-09-17 09:29:21 +02:00
benzjeremy
0437dc10bb Add CI report 2026-09-16 23:27:04 +02:00
benzjeremy
33b3217db1 Add CI report 2026-09-16 23:26:50 +02:00
benzjeremy
2a23af08e2 Add CI report 2026-09-16 22:38:43 +02:00
benzjeremy
538f5949b5 Add standardized CI pipeline & report 2026-09-16 22:21:35 +02:00
benzjeremy
61620a226f Add CI report 2026-09-16 21:49:44 +02:00
3 changed files with 34 additions and 47 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.27'
- name: Build
run: go build ./...
- name: Test
run: go test ./... -v
- name: Lint
run: go vet ./...

View File

@ -1,4 +1,5 @@
## CI Pipeline Report
# CI Report
- Added standardized GitHub Actions CI pipeline.
- Commit:
Commit: 33b3217db1ffc25d2f674499856815ae1598b0aa
Standardisierte CI-Pipeline vorhanden.