Do not #include platform.h in headers #338
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: MacOS Unit Tests | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
macos_unit_tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: brew install lmdb automake openssl pcre | |
- name: Run autotools / configure | |
run: ./autogen.sh --enable-debug | |
- name: Compile and link | |
run: make -j8 CFLAGS="-Werror -Wall" | |
- name: Run unit tests | |
run: make -C tests/unit check |