diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 000000000..87ffa9332 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,37 @@ +name: Hana CI + +permissions: + contents: read + +on: [push, pull_request] + +jobs: + tests: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: + - windows-latest + - ubuntu-latest + - macos-latest + compiler: + - llvm + - gcc + steps: + - name: Setup build environment + uses: aminya/setup-cpp@v1 + with: + compiler: ${{ matrix.compiler }} + vcvarsall: ${{ contains(matrix.os, 'windows') }} + cmake: true + ninja: true + + - name: Checkout source code + uses: actions/checkout@v3 + + - name: Configure CMake + run: mkdir build && cmake -S . -B build -G Ninja + + - name: Run the tests + run: cmake --build build --target check