Skip to content

Update EasyIterator to work with C++20 #23

Update EasyIterator to work with C++20

Update EasyIterator to work with C++20 #23

Workflow file for this run

name: Windows
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
env:
CTEST_OUTPUT_ON_FAILURE: 1
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake -Htest -Bbuild
- name: build
run: cmake --build build --config Debug -j4
- name: test
run: |
cd build
ctest --build-config Debug