Compare commits
10 Commits
1ee6717e66
...
b498acab1c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b498acab1c | ||
|
|
c41bc1fedd | ||
|
|
65d3b0636c | ||
|
|
2d7ed83512 | ||
|
|
44f732dcbe | ||
|
|
0437dc10bb | ||
|
|
33b3217db1 | ||
|
|
2a23af08e2 | ||
|
|
538f5949b5 | ||
|
|
61620a226f |
44
.github/workflows/ci.yml
vendored
44
.github/workflows/ci.yml
vendored
@ -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
30
.github/workflows/ci_arch.yml
vendored
Normal 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 ./...
|
||||
@ -1,4 +1,5 @@
|
||||
## CI Pipeline Report
|
||||
# CI Report
|
||||
|
||||
- Added standardized GitHub Actions CI pipeline.
|
||||
- Commit:
|
||||
Commit: 33b3217db1ffc25d2f674499856815ae1598b0aa
|
||||
|
||||
Standardisierte CI-Pipeline vorhanden.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user