aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2021-03-03 01:01:44 -0700
committerTim Harder <radhermit@gmail.com>2021-03-03 01:01:44 -0700
commit5ea28b0b06268aa4d44a1afa4d2488793b65870e (patch)
treef119a596bf9e5da5f6ab68bc0a6524d563593770
parentgithub: simplify workflow names (diff)
downloadpkgcore-5ea28b0b06268aa4d44a1afa4d2488793b65870e.tar.gz
pkgcore-5ea28b0b06268aa4d44a1afa4d2488793b65870e.tar.bz2
pkgcore-5ea28b0b06268aa4d44a1afa4d2488793b65870e.zip
github: add experimental python 3.10 build
-rw-r--r--.github/workflows/test.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index b7eb4cc32..96cdc330d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,10 +9,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest
+ continue-on-error: ${{ matrix.experimental }}
strategy:
- max-parallel: 4
matrix:
- python-version: [3.8, 3.9]
+ python-version: ['3.8', '3.9']
+ experimental: [false]
+ include:
+ - python-version: '3.10.0-alpha - 3.10.0'
+ experimental: true
steps:
- name: Checkout code