Skip to content

[launchk] do not compile regex repeatedly, set 2 fps for cursive (aut… #258

[launchk] do not compile regex repeatedly, set 2 fps for cursive (aut…

[launchk] do not compile regex repeatedly, set 2 fps for cursive (aut… #258

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
# macos-12 deprecated 2024-12-03
- runner: macos-13
xcode_version: 15.2 # macOS SDK: 14.2
- runner: macos-14
xcode_version: 15.3 # macOS SDK: 14.4
- runner: macos-15
xcode_version: 16.3 # macOS SDK: 15.4
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Setup Xcode version
uses: maxim-lobanov/[email protected]
with:
xcode-version: ${{ matrix.xcode_version }}
- name: Build
run: |
echo "macOS SDK version: $(xcrun --sdk macosx --show-sdk-version)"
cargo build --verbose
- name: Run tests
run: cargo test --verbose