From d0ce54ebefdf4e9b1b1f7c2da290dcf0a4dfdbf1 Mon Sep 17 00:00:00 2001 From: Dave Johansen Date: Tue, 16 Jan 2024 10:01:24 -0700 Subject: [PATCH] Run tests with all supported versions of Python --- .github/workflows/pull-requests.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 749c412..d390599 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -16,12 +16,17 @@ concurrency: jobs: testing: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.10", "3.11", "3.12"] + steps: - uses: actions/checkout@v3 - uses: FedericoCarboni/setup-ffmpeg@v2 id: setup-ffmpeg - - uses: actions/setup-python@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: ${{ matrix.python-version }} - run: make install - run: make unittest