Skip to content

Setup CI with GitHub Actions #1

Setup CI with GitHub Actions

Setup CI with GitHub Actions #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: make build-library
test:
name: Test
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: make test-library
build-example:
name: Build Example app
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: make build-example