Skip to content
Merged
Changes from 1 commit
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: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@ name: CI

on:
push:
branches:
- main
- master

jobs:
build-and-test:
name: Run on ${{ matrix.os }} with SOFA ${{ matrix.sofa_branch }}
if: >
github.event_name == 'push' ||
contains(github.event.pull_request.labels.*.name, 'pr: run ci')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2022] #macos-14,
os: [ubuntu-22.04, macos-14, windows-2022]
sofa_branch: [master]

steps:
Expand Down
Loading