Skip to content

Refactor + CI

Refactor + CI #30

Workflow file for this run

name: CMake
on:
push:
branches: ["master", "conan2"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
build_type: [Release, Debug]
steps:
- uses: actions/checkout@v4
- name: Get conan
uses: turtlebrowser/[email protected]
- name: Create default profile
run: conan profile detect --force
- name: Install dependencies
run: conan install . --settings build_type=${{ matrix.build_type }} --build=missing
- name: Build
run: conan build .