Skip to content

added github workflow #7

added github workflow

added github workflow #7

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
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