Skip to content

Commit

Permalink
Add fail-fast: false and continue-on-error: true
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Aug 20, 2019
1 parent c15ed91 commit 409f5d0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -24,6 +25,7 @@ jobs:
run: |
make lint
- name: make test
continue-on-error: true
run: |
python ./configure.py
make test

0 comments on commit 409f5d0

Please sign in to comment.