From 5073c2b36528bbf407058ef237a90689c606555a Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Mon, 27 May 2024 12:21:45 +0200 Subject: [PATCH] Add CI jobs for Python 3.8, 3.9, and 3.10 --- .github/workflows/default.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index fc0f0fc5..0c6b4d7c 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -15,6 +15,9 @@ jobs: python-version: [ '3.12', '3.11', + '3.10', + '3.9', + '3.8', ] steps: @@ -33,7 +36,7 @@ jobs: python -m pip install --upgrade pip pip install --upgrade --requirement requirements-test.txt - name: lint - # if: ${{ matrix.python-version == '3.12' }} + if: ${{ matrix.python-version == '3.12' }} run: | make lint - name: pytest @@ -43,6 +46,7 @@ jobs: run: | make examples - name: documentation + if: ${{ matrix.python-version == '3.12' }} run: | make documentation - name: distributions