Work in progress #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
config: | |
# - name: macOS 13 | |
# # os: macos-13-large | |
# os: macos-latest | |
# - name: Ubuntu | |
# os: ubuntu-latest | |
- name: Windows 2022 | |
os: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Conan | |
run: | | |
pip install conan | |
- name: Install Dependencies | |
run: | | |
conan profile detect | |
conan install . --output-folder=build --build=missing --settings compiler.cppstd=17 --conf tools.system.package_manager:mode=install | |
- name: Build | |
run: | | |
conan build . --build-folder=build |