Decouple queue, label functions with void parameters, remove FLS and TRU opcodes #33
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: CMake | |
run: | | |
mkdir bld | |
cd bld | |
cmake .. | |
cd .. | |
cmake --build bld --config Debug |