Skip to content

Fix Wifi loop more, Event log, more mqtt autoconfig for homeassistant #27

Fix Wifi loop more, Event log, more mqtt autoconfig for homeassistant

Fix Wifi loop more, Event log, more mqtt autoconfig for homeassistant #27

Workflow file for this run

name: Run Unit Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Configure and build with CMake
run: |
mkdir build
cd build
cmake -DUNIT_TEST=ON ..
cmake --build .
- name: Run unit tests
run: |
set -e # Exit immediately on non-zero exit code
cd build/test
dir -s
for test_executable in *; do
if [ -f "$test_executable" ] && [ -x "$test_executable" ]; then
./"$test_executable"
fi
done