From 86b623f5069cf1ef367928ef2e6d6cae40479683 Mon Sep 17 00:00:00 2001 From: Matthias Straka Date: Tue, 5 Sep 2023 12:54:36 +0200 Subject: [PATCH] ci: test on both python 3.7 and 3.10 --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 140e8c2..a9123c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,11 +11,15 @@ jobs: runs-on: ubuntu-latest + strategy: + matrix: + python: ['3.7', '3.10'] + steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: '3.7' + python-version: ${{matrix.python}} cache: 'pip' - name: Install dependencies run: pip install -r requirements.txt