Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ on:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
inputs:
run_macos:
description: "Run macOS CI jobs (slow runners, opt-in)"
type: boolean
default: false

name: CI

Expand Down Expand Up @@ -229,6 +235,7 @@ jobs:
needs: basics
name: test workspace
runs-on: ${{ matrix.os }}
if: ${{ !contains(matrix.os, 'macos') || inputs.run_macos == true }}
strategy:
matrix:
os:
Expand Down Expand Up @@ -264,6 +271,7 @@ jobs:
needs: basics
name: test workspace (all features)
runs-on: ${{ matrix.os }}
if: ${{ !contains(matrix.os, 'macos') || inputs.run_macos == true }}
strategy:
matrix:
os:
Expand Down