Create test-windows.yml

This commit is contained in:
nulano 2019-09-23 13:12:01 +02:00 committed by GitHub
parent 79a9981a63
commit 8aa5ec661f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
.github/workflows/test-windows.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Test Windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-2016
strategy:
matrix:
python-version: ["3.7"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- name: Prepare dependencies
run: python.exe winbuild\build_dep.py
- name: Build dependencies
run: winbuild\build_deps.cmd
- name: Build
run: python.exe winbuild\build.py
- name: Test
run: python.exe selftest.py --installed
- name: After success
run: echo TODO