Skip to content

Commit

Permalink
ci: add a macOS GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lzaoral committed Dec 9, 2023
1 parent a023cda commit ca11b83
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: macOS CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
ubuntu:
name: macOS ${{ matrix.version }} (${{ matrix.compiler }} with sanitizers)
strategy:
fail-fast: false
matrix:
compiler: [clang++]
version: [latest]

runs-on: macos-${{ matrix.version }}
env:
CXX: ${{ matrix.compiler }}
CXXFLAGS: -Werror

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies
run: brew install help2man boost boost-python3 help2man

- name: Build and check
run: make distcheck-sanitizers

0 comments on commit ca11b83

Please sign in to comment.