Skip to content

Merge pull request #75 from ldilley/lineedit #43

Merge pull request #75 from ldilley/lineedit

Merge pull request #75 from ldilley/lineedit #43

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: CMake
run: |
mkdir bld
cd bld
cmake ..
cd ..
cmake --build bld --config Debug