diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8e9640f..358de96 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,8 +1,14 @@ on: [push] jobs: - run-and-compile: + run-and-compile-ubuntu: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - run: sudo apt install clang - - run: sudo ./build.sh \ No newline at end of file + - run: sudo source build.sh + run-and-compile-windows: + runs-on: windows-latest + steps: + - uses: TheMrMilchmann/setup-msvc-dev@v3 + with: + arch: x64 \ No newline at end of file