Merge pull request 'feat: add build job' (#1) from neoloc/buildjob into master

Reviewed-on: https://git.query.consul/unkin/puppetapi/pulls/1
This commit is contained in:
Ben Vincent 2024-12-15 19:41:28 +11:00
commit 60b56c6bba

View File

@ -0,0 +1,29 @@
name: Build
on:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
build:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8-runnerdnd:latest
options: --privileged
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install uv
run: |
dnf install uv -y
- name: Build
run: |
make build
- name: Show Built Items
run: |
find /workspace/unkin/puppetapi/dist -type f