From 632db7d9a213a79d9e64e6c3a7cfca8e4c17a094 Mon Sep 17 00:00:00 2001 From: Orsiris de Jong Date: Thu, 7 Jul 2022 11:33:04 +0200 Subject: [PATCH] Create windows.yml --- .github/workflows/windows.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..7a7e1be --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,23 @@ +name: windows-tests + +on: [push, pull_request] + +jobs: + build: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest] + steps: + - uses: actions/checkout@v2 + - name: Execute tests and generate coverage report + - uses: Vampire/setup-wsl@v1 + with: + distribution: Debian + env: + RUNNING_ON_GITHUB_ACTIONS: true + run: | + bash ./dev/tests/run_tests.sh + - name: Upload Coverage to Codecov + uses: codecov/codecov-action@v1