Feat/MAG-51: Ask for generator #34
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ "dev" ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ "dev" ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Build and test in Docker | |
run: | | |
docker build -t magnet . | |
docker run magnet | |
windows-build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Build with CMake | |
run: | | |
cmake -S . -B magnet/Build -G "Visual Studio 17 2022" -A x64 | |
cmake --build magnet/Build --config Debug | |
cmake --build magnet/Build --config Release | |