From 338eb21f0dcb2b37f357a5b638da2e58dac2c2b9 Mon Sep 17 00:00:00 2001 From: timrid <6593626+timrid@users.noreply.github.com> Date: Sat, 2 Jan 2021 18:11:03 +0100 Subject: [PATCH 1/3] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a691cb..83c4e8d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install -r .\requirements.txt + python -m pip install -r requirements.txt # Run pytests - name: Run pytests 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 2/3] 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 From 354fdb094c7a2984c614dd4d90267b6b2976e5d8 Mon Sep 17 00:00:00 2001 From: timrid <6593626+timrid@users.noreply.github.com> Date: Sat, 2 Jan 2021 18:49:39 +0100 Subject: [PATCH 3/3] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5eccc26..a7a9d62 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest', 'windows-latest'] - python-version: [ '3.6', '3.7', '3.8', 'pypy3' ] + python-version: [ '3.7', '3.8' ] runs-on: ${{ matrix.os }} name: OS ${{ matrix.os }}, Python ${{ matrix.python-version }}