From 13b2c280ea81920b4346de89cbf6473b911e61b3 Mon Sep 17 00:00:00 2001 From: timrid <6593626+timrid@users.noreply.github.com> Date: Sat, 2 Jan 2021 18:46:07 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 83c4e8d..5eccc26 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,13 +4,14 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest strategy: matrix: + os: ['ubuntu-latest', 'windows-latest'] python-version: [ '3.6', '3.7', '3.8', 'pypy3' ] - name: Python ${{ matrix.python-version }} + runs-on: ${{ matrix.os }} + name: OS ${{ matrix.os }}, Python ${{ matrix.python-version }} steps: # Checks out a copy of your repository on the machine