Skip to content

Merge branch 'main' of https://github.com/K20shores/aoc2023 #20

Merge branch 'main' of https://github.com/K20shores/aoc2023

Merge branch 'main' of https://github.com/K20shores/aoc2023 #20

Workflow file for this run

name: Windows
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
msvc2022:
runs-on: windows-latest
strategy:
matrix:
build_type: [Release]
architecture: [Win32, x64]
steps:
- uses: actions/checkout@v3
- name: Run CMake
run: cmake -S . -B build -A ${{ matrix.architecture }}
if: matrix.build_type == 'Release'
- name: Run CMake
run: cmake -S . -B build -A ${{ matrix.architecture }}
if: matrix.build_type == 'Debug'
- name: Build
run: cmake --build build --config ${{ matrix.build_type }} --parallel 10
- name: Run tests
run: |
cd build
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose