Skip to content

Commit

Permalink
feat(workflows): Add build checker workflows for MacOS and Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterLaplace committed Jan 11, 2024
1 parent 0b56f3e commit 2e5eb29
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/build_checker_macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Checker MacOs

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
verify-commit-name:
runs-on: macos-latest

steps:
- name: Set up Git repository
uses: actions/checkout@v4

- name: Install dependencies
run: |
brew install cmake
brew install ninja
- name: Build
run: |
mkdir build
cd build
cmake -G Ninja ..
ninja
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Checker
name: Build Checker Ubuntu

on:
push:
Expand Down

0 comments on commit 2e5eb29

Please sign in to comment.