Skip to content

Commit

Permalink
Build workflow (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
nedex authored Mar 1, 2023
1 parent 2632ce2 commit 1980fc2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: ci

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkita64

steps:
- name: Checkout project
uses: actions/checkout@v3
with:
submodules: recursive

- name: Build project
run: make

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: ovlmenu.ovl

0 comments on commit 1980fc2

Please sign in to comment.