Skip to content

feat(manips): #1 support "springy" state for multi-position switches #10

feat(manips): #1 support "springy" state for multi-position switches

feat(manips): #1 support "springy" state for multi-position switches #10

Workflow file for this run

name: Compile
on:
push:
branches: [ "*" ]
jobs:
Compile:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v5.0.0
with:
submodules: recursive
- name: Configure CMake (Windows)
if: runner.os == 'Windows'
run: cmake . -G="MinGW Makefiles"
- name: Configure CMake (*nix)
if: runner.os != 'Windows'
run: cmake .
- name: Compile
run: cmake --build .