Skip to content

added github workflow #6

added github workflow

added github workflow #6

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
arch: [x86_64, arm64] # Specify the desired architectures here
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up QEMU for ARM64
if: matrix.arch == 'arm64'
run: |
brew install qemu
brew link qemu
- name: Build Project
run: |
make all
- name: Clean Up
run: |
make clean