Fixed CI.

This commit is contained in:
Teal Dulcet
2022-07-14 02:18:58 -07:00
parent 0540e54213
commit ec2b79950f
3 changed files with 7 additions and 6 deletions

View File

@@ -27,9 +27,9 @@ jobs:
$CXX --version
- name: Script
run: |
$CXX -Wall -g -Og -fsanitize=address,undefined tables.cpp -o tables
$CXX -std=c++17 -Wall -g -Og -fsanitize=address,undefined tables.cpp -o tables
./tables
$CXX -Wall -g -Og -fsanitize=address,undefined graphs.cpp -o graphs
$CXX -std=c++17 -Wall -g -Og -fsanitize=address,undefined graphs.cpp -o graphs
./graphs
- name: Cppcheck
run: cppcheck --enable=all .