We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2a460 commit f7956e0Copy full SHA for f7956e0
1 file changed
.github/workflows/ci.yml
@@ -2,15 +2,21 @@ name: CI
2
3
on:
4
push:
5
+ branches:
6
+ - main
7
+ - master
8
9
jobs:
10
build-and-test:
11
name: Run on ${{ matrix.os }} with SOFA ${{ matrix.sofa_branch }}
12
+ if: >
13
+ github.event_name == 'push' ||
14
+ contains(github.event.pull_request.labels.*.name, 'pr: run ci')
15
runs-on: ${{ matrix.os }}
16
strategy:
17
fail-fast: false
18
matrix:
- os: [ubuntu-22.04, windows-2022] #macos-14,
19
+ os: [ubuntu-22.04, macos-14, windows-2022]
20
sofa_branch: [master]
21
22
steps:
0 commit comments