Skip to content

Update README.md

Update README.md #78

name: Build macOS-x86
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=Debug -DSL_DOWNLOAD_DATA=OFF
- name: Build
run: cmake --build ${{ github.workspace }}/build -j $(sysctl -n hw.ncpu)