From f629084bc2983c4d3b38b697462fe0075ec96d59 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 28 Jun 2021 12:01:13 +0100 Subject: [PATCH] CI --- .github/workflows/linux-x64-python-39.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux-x64-python-39.yml b/.github/workflows/linux-x64-python-39.yml index a7d73f9..7b3217b 100644 --- a/.github/workflows/linux-x64-python-39.yml +++ b/.github/workflows/linux-x64-python-39.yml @@ -19,7 +19,11 @@ jobs: build: # The type of runner that the job will run on runs-on: ubuntu-18.04 - # Steps represent a sequence of tasks that will be executed as part of the job + strategy: + # You can use PyPy versions in python-version. + # For example, pypy2 and pypy3 + matrix: + python-version: [ 3.6, 3.7, 3.8, 3.9 ] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 @@ -30,7 +34,7 @@ jobs: uses: actions/setup-python@v2.2.2 with: # Version range or exact version of a Python version to use, using SemVer's version range syntax. - python-version: 3.9 + python-version: ${{ matrix.python-version }} # The target architecture (x86, x64) of the Python interpreter. architecture: x64