From abedf444d0c7075dac8fa540669b0d52fd3d8a57 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 28 Apr 2022 16:04:47 -0600 Subject: [PATCH] matrix --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ba95d42ee..1210bd47c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,12 +30,16 @@ jobs: run: tox -e docs deps: name: Test dependencies - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + python: [3.6, 3.8] steps: - name: Set up Python uses: actions/setup-python@v3 with: - python-version: 3.9 + python-version: ${{ matrix.python }} - name: Checkout default branch uses: actions/checkout@v3 with: -- 2.39.5