We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5347c commit 69c4c1cCopy full SHA for 69c4c1c
.github/workflows/unit_tests.yml
@@ -21,13 +21,9 @@ jobs:
21
with:
22
node-version: 16.18
23
24
- - name: Compile Code
+ - name: Compile Code and Run Unit Tests
25
run:
26
- make all
27
-
28
- - name: Run Unit Tests
29
- run:
30
- ./scripts/run_all_tests.sh
+ make test
31
32
- name: Clean up workspace
33
Makefile
@@ -1,6 +1,6 @@
1
# Define the compiler and its flags during compilation
2
CC = g++
3
-FLAGS = -g -Wall -std=c++11 -I $(INC_DIR) -O3 -fsanitize=address
+FLAGS = -g -Wall -std=c++11 -I $(INC_DIR) -O3
4
5
# Setup constants for code directories
6
INC_DIR = include
0 commit comments