From 9f462c37cc641bcf1f3bec17b12c2812574dd925 Mon Sep 17 00:00:00 2001 From: Jun Omae Date: Tue, 21 Sep 2021 03:08:32 +0900 Subject: [PATCH] Add Python 3.4 and 3.5 --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 936554a..353e11d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,10 +4,13 @@ on: [push] jobs: tests: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [2.7, 3.6, 3.7, 3.8, 3.9, '3.10-dev', pypy2, pypy3] + os: [ubuntu-latest] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10-dev', pypy2, pypy3] + include: + - {os: ubuntu-18.04, python-version: 3.4} steps: - uses: actions/checkout@v2