Add draft of build action
Some checks failed
Build / Build (push) Failing after 3s

This commit is contained in:
Michael Bradley 2025-02-23 11:58:07 -05:00
parent c04309baaf
commit 641850eb50
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -0,0 +1,21 @@
---
on: [push]
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Check out the code
uses: action/checkout@v4
- name: Set up the build environment
run: cmake .
- name: Compile the code
run: cmake --build .
- name: Save executable
uses: forgejo/upload-artifact@v4
with:
name: bin.zip
path: perlin-noise