From 899f463c8eb70490e9b1abd531219e0161993aa6 Mon Sep 17 00:00:00 2001 From: SySyAli Date: Mon, 25 Dec 2023 18:10:38 -0500 Subject: [PATCH] Adding MacOS config to the build.yml. --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 29ad829..6f9ca4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,6 +64,28 @@ jobs: cd bin ./tests + build-macos: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + run: | + brew update + brew install cmake sqlite3 + + - name: Configure CMake + run: cmake -S . -B build + + - name: Build + run: cmake --build build + + - name: Run Tests + run: | + cd bin + ./tests + linter: runs-on: windows-latest steps: