Skip to content

Commit

Permalink
Adding MacOS config to the build.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
SySyAli committed Dec 25, 2023
1 parent 4d6b3d9 commit 899f463
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 899f463

Please sign in to comment.