From 7db1c32e4df12f3b0a2d1f6b04918dd32c1ccdf5 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 25 Dec 2019 10:33:50 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20tweak=20ci=20build=20for=20reada?= =?UTF-8?q?bility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb1718e..1a33788 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,13 +23,18 @@ jobs: fail-fast: false steps: - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - - name: Run Tests + + - name: Install dependencies run: | - echo "${{ matrix.python-version }} -> ${{ matrix.django-version }}" pip install -U pip pip install "Django~=${{ matrix.django-version }}.0" . + + - name: Run Tests + run: | + echo "$(python --version) / Django $(django-admin --version)" python test_dj_database_url.py