Skip to content

Commit 69c4c1c

Browse files
committed
Changed the github actions yml file according to the updated Makefile
1 parent 7f5347c commit 69c4c1c

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@ jobs:
2121
with:
2222
node-version: 16.18
2323

24-
- name: Compile Code
24+
- name: Compile Code and Run Unit Tests
2525
run:
26-
make all
27-
28-
- name: Run Unit Tests
29-
run:
30-
./scripts/run_all_tests.sh
26+
make test
3127

3228
- name: Clean up workspace
3329
run:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Define the compiler and its flags during compilation
22
CC = g++
3-
FLAGS = -g -Wall -std=c++11 -I $(INC_DIR) -O3 -fsanitize=address
3+
FLAGS = -g -Wall -std=c++11 -I $(INC_DIR) -O3
44

55
# Setup constants for code directories
66
INC_DIR = include

0 commit comments

Comments
 (0)