From 05ffeb3648ecc3666f4dc578b42f7367c35067a1 Mon Sep 17 00:00:00 2001 From: Hunter Richards Date: Tue, 27 Aug 2024 12:17:54 -0500 Subject: [PATCH] Set up all interpreters --- .github/workflows/django.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 3e641c5..9cfd55f 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -28,17 +28,16 @@ jobs: - 5432:5432 runs-on: ubuntu-20.04 - strategy: - max-parallel: 4 - matrix: - python-version: [3.6] steps: - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: | + 3.6 + 3.8 + 3.9 - name: Install Dependencies run: | pip install virtualenv