You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
osync/.github/workflows/windows.yml

24 lines
499 B
YAML

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