We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a023cda commit 552e07fCopy full SHA for 552e07f
.github/workflows/macos.yml
@@ -0,0 +1,32 @@
1
+---
2
+name: macOS CI
3
+
4
+on:
5
+ push:
6
+ branches: [main]
7
+ pull_request:
8
9
10
+jobs:
11
+ ubuntu:
12
+ name: macOS ${{ matrix.version }} (${{ matrix.compiler }} with sanitizers)
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ compiler: [clang++]
17
+ version: [latest]
18
19
+ runs-on: macos-${{ matrix.version }}
20
+ env:
21
+ CXX: ${{ matrix.compiler }}
22
+ CXXFLAGS: -Werror
23
24
+ steps:
25
+ - name: Checkout repository
26
+ uses: actions/checkout@v4
27
28
+ - name: Install dependencies
29
+ run: brew install boost boost-python3 help2man
30
31
+ - name: Build and check
32
+ run: make distcheck-sanitizers
0 commit comments