Merge pull request #210 from c-jimenez/fix/segfault_on_client_pool #284
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: Unit test in Debug build | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make gcc Debug | |
run: make gcc BUILD_TYPE=Debug | |
- name: unit tests gcc Debug | |
run: make tests-gcc BUILD_TYPE=Debug | |
- name: make clang Debug | |
run: make clang BUILD_TYPE=Debug | |
- name: unit tests clang | |
run: make tests-clang BUILD_TYPE=Debug |