Adding a merge checker script

This commit is contained in:
2025-05-21 17:46:49 -04:00
parent dee19b54ad
commit 8a15459fc8
5 changed files with 46 additions and 18 deletions

View File

@@ -0,0 +1,26 @@
name: Merge-Checker
on:
pull_request:
branches: ["**"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Install dependencies (CMake + Ninja + Compiler)
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build build-essential
- name: Configure project with CMake
run: |
cmake -G Ninja -S . -B build/
- name: Build with Ninja
run: |
ninja -C build/