Create windows.yml

This commit is contained in:
Orsiris de Jong 2022-07-07 11:33:04 +02:00 committed by GitHub
parent 999aeed303
commit 632db7d9a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

23
.github/workflows/windows.yml vendored Normal file
View File

@ -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