From 8ed77be8d760d40f8946d408d84f7fb760d4adc2 Mon Sep 17 00:00:00 2001 From: "Terence D. Honles" Date: Mon, 15 Nov 2021 10:57:25 +0100 Subject: [PATCH] Update CI config to not fail fast and use more friendly names for CI jobs --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ceb231f..9bc2fc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Tests +name: Test on: [push, pull_request] @@ -9,8 +9,10 @@ env: jobs: build: + name: Python ${{ matrix.python-version }} runs-on: ubuntu-20.04 strategy: + fail-fast: false max-parallel: 8 matrix: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]