Skip to content

try github actions CI #2

try github actions CI

try github actions CI #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: cmake configure
run: cmake .
- name: Build
run: cmake --build . --config RelWithDebInfo
- name: install
run: cmake --install . --config RelWithDebInfo