Skip to content

Commit

Permalink
add ci script for running build
Browse files Browse the repository at this point in the history
  • Loading branch information
metavee committed Jul 30, 2024
1 parent c976918 commit f4d6a4c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Package

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install just
uses: extractions/setup-just@v1
with:
just-version: 1.32.0

- name: Install NASM
uses: ilammy/setup-nasm@v1

- name: Verify NASM installation
run: nasm -v

- name: Build project
run: just build

0 comments on commit f4d6a4c

Please sign in to comment.