Skip to content

Commit

Permalink
Add Makefile workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
narc0tiq committed Dec 18, 2024
1 parent 6b59d5d commit ce74202
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Makefile CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get update; sudo apt-get install lua5.2 make zip

- name: Run check
run: make package clean

- name: Save the build
uses: actions/[email protected]
with:
path: pkg/
if-no-files-found: error
overwrite: true

0 comments on commit ce74202

Please sign in to comment.