Solving some minor problems in the test procedure of charging point test cases #268
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: 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 |