Skip to content

Commit

Permalink
added github actions build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
savaughn committed Sep 23, 2023
1 parent b3a350a commit a3f9d75
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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 libpksav
run: |
cd libpksav/
cmake .
make
- name: Build Project
run: |
make all
- name: Clean Up
run: |
make clean

0 comments on commit a3f9d75

Please sign in to comment.