CMake: add cmake installation; add SIMPLEINI_USE_SYSTEM_GTEST option #47
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
name: Test SimpleIni | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install requirements | |
run: sudo apt install libgtest-dev | |
- uses: actions/checkout@v3 | |
- run: make all && make test | |
MacOS: | |
runs-on: macos-latest | |
steps: | |
- name: Install requirements | |
run: brew install googletest | |
- uses: actions/checkout@v3 | |
- run: make all && make test |