Skip to content

docs: add macOS Gatekeeper security approval instructions to README #24

docs: add macOS Gatekeeper security approval instructions to README

docs: add macOS Gatekeeper security approval instructions to README #24

Workflow file for this run

name: Build Check
on:
push:
branches:
- master
tags-ignore:
- '**'
pull_request:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout repository (with submodules)
uses: actions/checkout@v6
with:
submodules: recursive
- name: Select latest Xcode (Swift 6.2+)
run: |
LATEST_XCODE=$(ls -d /Applications/Xcode*.app | sort -V | tail -1)
echo "Selecting $LATEST_XCODE"
sudo xcode-select -s "$LATEST_XCODE"
swift --version
- name: Install dependencies
run: brew install cmake libomp rust
- name: Set up Ruby (for xcpretty)
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4'
- name: Install xcpretty
run: gem install xcpretty
- name: Make run.sh executable
run: chmod +x ./run.sh
- name: Build with run.sh
run: ./run.sh build