[net26 repo] Update docs: org renamed to bemanproject #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/macos.yml | |
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
name: Macos Build | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- "include/**" | |
- "src/**" | |
- "test/**" | |
- "CMakeLists.txt" | |
- ".github/workflows/macos.yml" | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- "include/**" | |
- "src/**" | |
- "test/**" | |
- "CMakeLists.txt" | |
- ".github/workflows/macos.yml" | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make | |
run: make |