From 539a7b53cd8e444bbaa2d7d850b8f917e3d57333 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 29 Sep 2019 15:55:26 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ad52f1b6..b97e8ae3a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,12 +2,13 @@ name: Build and test on: [push] -jobs: +jobs: build: strategy: + fail-fast: false max-parallel: 4 matrix: - platform: [ubuntu-16.04, macOS-10.13, windows-2016] + platform: [ubuntu-16.04, macOS-10.14, windows-2016] python-version: [3.5, 3.6, 3.7] runs-on: ${{ matrix.platform }} @@ -25,10 +26,6 @@ jobs: run: | python -m pip install --upgrade pip==18.1 setuptools pip install -r requirements.txt - - name: Install dependencies - run: | - python -m pip install --upgrade pip==18.1 setuptools - pip install -r requirements.txt - name: Compile and build sdist run: | python setup.py build_ext --inplace