Changed to docker

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

View File

@ -11,16 +11,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Arch Linux - name: Build & Test in Arch Linux Container
uses: kiriuslen/archlinux-setup-action@v1 uses: addnab/docker-run-action@v3
with:
- name: Install dependencies image: archlinux:latest
run: | options: -v ${{ github.workspace }}:/workspace -w /workspace
sudo pacman -Sy --noconfirm base-devel git python python-pip docker make run: |
# Add weitere Dependencies falls nötig pacman -Sy --noconfirm base-devel git python python-pip docker make
make build
- name: Build make test
run: make build
- name: Test
run: make test