From 9b2045d6ae8910cb6748c8a3297434dc779ae8e1 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sun, 17 Jan 2021 13:54:20 +0000 Subject: [PATCH] Update ci.yaml --- .github/workflows/ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 335df62..8cdc3c8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,6 +6,7 @@ jobs: test: name: Tests runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: matrix: python-version: @@ -13,7 +14,10 @@ jobs: - 3.7 - 3.8 - 3.9 - - 3.10.0-alpha - 3.10.0 + experimental: [false] + include: + - python-version: 3.10.0-alpha - 3.10.0 + experimental: true steps: - uses: actions/checkout@v2