From 52d2f1147560fa8835970afc050587a937324250 Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Mon, 25 Jan 2021 00:21:03 +0000 Subject: [PATCH] *sigh* --- .github/workflows/django.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 253091ce..c50a602b 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -14,9 +14,16 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, '[ci skip]')" - container: python:3-slim + strategy: + max-parallel: 1 + matrix: + python-version: [3.8] steps: - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} - name: Setup Chromedriver run: | wget https://chromedriver.storage.googleapis.com/2.36/chromedriver_linux64.zip