mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-24 17:21:09 +02:00
27 lines
539 B
YAML
27 lines
539 B
YAML
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
|