From 8aa5ec661fff4e1ed77c2ab294271f69e468e21b Mon Sep 17 00:00:00 2001 From: nulano Date: Mon, 23 Sep 2019 13:12:01 +0200 Subject: [PATCH] Create test-windows.yml --- .github/workflows/test-windows.yml | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/test-windows.yml diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml new file mode 100644 index 000000000..7c8ca949c --- /dev/null +++ b/.github/workflows/test-windows.yml @@ -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 +