From 49c44378d070abba07c2bca991b0c9b61ef786b9 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 20 Aug 2019 16:24:56 +0200 Subject: [PATCH] Add fail-fast: false and continue-on-error: true --- .github/workflows/pythonpackage.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 855401842a6c93..1cb29766138f09 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -6,10 +6,11 @@ jobs: build: runs-on: ubuntu-latest strategy: - max-parallel: 1 + fail-fast: false + max-parallel: 2 matrix: # GitHub Actions / build (2.7) successful in 1h 30m 7s - python-version: [3.7] # [2.7, 3.5, 3.6,, 3.7] + python-version: [2.7, 3.7] # [2.7, 3.5, 3.6,, 3.7] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} @@ -24,6 +25,7 @@ jobs: run: | make lint - name: make test + continue-on-error: true run: | python ./configure.py make test