mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-22 16:21:09 +02:00
Added github workflow
This commit is contained in:
parent
3c701118e8
commit
99316c1088
26
.github/workflows/test-on-arch.yml
vendored
Normal file
26
.github/workflows/test-on-arch.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user