Update integer_set::split
to be called only once on the outermost set
#3162
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: Build and Test | |
on: | |
push: | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
Ubuntu: | |
runs-on: ${{ matrix.system }} | |
timeout-minutes: 360 | |
env: | |
CXX: ${{ matrix.compiler }} | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [ g++, clang++ ] | |
configuration: [ Debug, Release ] | |
system: [ ubuntu-20.04, ubuntu-22.04, macos-14 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./script/setup-${{ matrix.system }}.sh --all | |
- run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} | |
- run: cmake --build build --target continuous-integration | |
- run: cmake -B example/build -S example -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} | |
- run: cmake --build example/build --target continuous-integration |