CI: Run unit tests on Release build as well
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 7s

This commit is contained in:
Stephen Seo 2024-09-11 13:18:38 +09:00
parent 09b88f75c2
commit 30e0753ba8

View file

@ -18,3 +18,8 @@ jobs:
run: make -C c_simple_http
- name: Run unit tests
run: ./c_simple_http/unit_test
- name: Build Release build
run: make -C c_simple_http clean && make RELEASE=1 -C c_simple_http
- name: Run unit tests on Release build
run: ./c_simple_http/unit_test