Skip to content

Stack decouple and compiler unary minus support #25

Stack decouple and compiler unary minus support

Stack decouple and compiler unary minus support #25

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: CMake
run: |
mkdir bld
cd bld
cmake ..
cd ..
cmake --build bld --config Debug