Skip to content

Fix-vs2019-build

Fix-vs2019-build #27

Workflow file for this run

name: ubuntu-gnu
on:
pull_request:
branches:
- main
- dev
jobs:
builds-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
build-type: ["Debug", "Release"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build application
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.build-type}}
cmake --build build -j