feat: Add GitHub Actions workflow, for automated compile check

This commit is contained in:
Davide Beatrici 2022-06-01 08:35:52 +02:00
parent 7b4e8e5f61
commit 1cfb6257a1

17
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Configure
run: cmake -B ${{github.workspace}}/build