Skip to content

make cl_color value static #13

make cl_color value static

make cl_color value static #13

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake build-essential
- name: Create build directory
run: mkdir build
- name: Configure CMake
run: cmake -B build -S .
- name: Build
run: cmake --build build --parallel 4