Skip to content

Commit

Permalink
added github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
savaughn committed Sep 23, 2023
1 parent 85cb324 commit 13b0a06
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and Test

on:
push:
branches:
- main

jobs:
target: aarch64-apple-darwin
build:
runs-on: macos-latest
strategy:
matrix:
arch: [arm64] # Specify the desired architectures here

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Build Project
run: |
make all
- name: Clean Up
run: |
make clean
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ bundle: all
@echo "$(MACOS_BUNDLE) bundle created"

.DEFAULT:
@echo "Nothing to do. Please specify a target (e.g., 'make run')."
echo "Nothing to do. Please specify a target (e.g., 'make run')."

mgba:
@mgba "$(ROM_PATH)/$(ROM_FILE)"
Expand Down

0 comments on commit 13b0a06

Please sign in to comment.