From e66cfd58ad679f02a37480717b19de9c1077e7e4 Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Thu, 4 Jun 2020 01:09:35 -0400 Subject: [PATCH] feat: add windows into ci --- .github/workflows/ci.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5c736e1ba..50ab7462a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,10 +5,11 @@ jobs: runs-on: ${{ matrix.platform }} strategy: matrix: - platform: [ ubuntu-latest ] + platform: [ windows-latest, ubuntu-latest ] env: - PY_COLOR: 1 NOSE_SHOW_SKIPPED: 1 + PY_COLOR: 1 + PYTHONIOENCODING: utf-8 steps: - uses: actions/checkout@v2 - name: Set up Python 2.7 @@ -39,11 +40,12 @@ jobs: runs-on: ${{ matrix.platform }} strategy: matrix: - platform: [ ubuntu-latest ] + platform: [ windows-latest, ubuntu-latest ] python-version: [ 5, 6, 7, 8 ] env: - PY_COLOR: 1 NOSE_SHOW_SKIPPED: 1 + PY_COLOR: 1 + PYTHONIOENCODING: utf-8 steps: - uses: actions/checkout@v2 - name: Set up Python 3.${{ matrix.python-version }}