Skip to content

CI: added windows and osx builds as well as tests to the github pipelines #7

CI: added windows and osx builds as well as tests to the github pipelines

CI: added windows and osx builds as well as tests to the github pipelines #7

Workflow file for this run

name: Build
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Linux
run: |
cmake .
cmake --build .
windows:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Windows
run: |
cmake .
cmake --build .