Restructuring and add format strings typechecking for clang

This commit is contained in:
Krzosa Karol
2024-01-12 09:54:41 +01:00
parent a3c0a63ee2
commit f68500a804
13 changed files with 61 additions and 46 deletions

View File

@@ -5,13 +5,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: sudo apt install g++
- run: g++ code/build_main.cpp -o bld && ./bld
- run: g++ tools/build_main.cpp -o bld && ./bld
run-and-compile-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: brew install llvm
- run: clang++ code/build_main.cpp -std=c++11 -o bld && ./bld
- run: clang++ tools/build_main.cpp -std=c++11 -o bld && ./bld
run-and-compile-windows:
runs-on: windows-latest
steps: