mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-21 07:41:09 +02:00
23 lines
539 B
YAML
23 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: Build & Test in Arch Linux Container
|
|
uses: addnab/docker-run-action@v3
|
|
with:
|
|
image: archlinux:latest
|
|
options: -v ${{ github.workspace }}:/workspace -w /workspace
|
|
run: |
|
|
pacman -Sy --noconfirm base-devel git python python-pip docker make
|
|
make build
|
|
make test
|