Skip to content

added github workflow #5

added github workflow

added github workflow #5

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Build Project
run: |
make all
- name: Clean Up
run: |
make clean