From 37eec9346ed1628a0d2f4dc095d5f3b71df0a158 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Sat, 6 Jan 2024 13:49:12 +0100 Subject: [PATCH] Fix actions --- .github/workflows/run-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 78be3b5..68a6c8a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -5,7 +5,13 @@ jobs: steps: - uses: actions/checkout@v4 - run: sudo apt install g++ - - run: g++ build_main.cpp -o bld && ./bld + - run: g++ code/build_main.cpp -o bld && ./bld + run-and-compile-mac: + runs-on: mac-latest + steps: + - uses: actions/checkout@v4 + - run: brew install llvm + - run: clang++ code/build_main.cpp -o bld && ./bld run-and-compile-windows: runs-on: windows-latest steps: