Skip to content

Add Github Actions

Add Github Actions #2

Workflow file for this run

name: Build and Test
on:
push:
branches: [master, devel]
pull_request:
branches: [master, devel]
jobs:
build_and_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Cmake
run: |
mkdir -p build
cd build
cmake ..
- name: Build
working-directory: build
run: make -j4
- name: Test
working-directory: build
run: ./uuid