Added github workflow

This commit is contained in:
Kevin Veen-Birkenbach 2025-07-13 02:42:01 +02:00
parent 3c701118e8
commit 99316c1088
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E

26
.github/workflows/test-on-arch.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Build & Test on Arch Linux
on:
push:
branches: [ master ]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Arch Linux
uses: kiriuslen/archlinux-setup-action@v1
- name: Install dependencies
run: |
sudo pacman -Sy --noconfirm base-devel git python python-pip docker make
# Add weitere Dependencies falls nötig
- name: Build
run: make build
- name: Test
run: make test