From 657874845f37cade2bcd6c081d0681e9913b995d Mon Sep 17 00:00:00 2001 From: David Smith Date: Sat, 30 Jan 2021 11:20:58 +0000 Subject: [PATCH] Fixed indentation for publish workflow --- .github/workflows/publish.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7869ecfc4..b5bb3f3bd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,15 +9,15 @@ jobs: test: runs-on: ubuntu-latest strategy: - matrix: - python: [3.5, 3.6, 3.7, 3.8, 3.9] - django: [2.2.*, 3.0.*, 3.1.*] - exclude: - # exclude python 3.5 with django v3+ - - python: 3.5 - django: 3.0.* - - python: 3.5 - django: 3.1.* + matrix: + python: [3.5, 3.6, 3.7, 3.8, 3.9] + django: [2.2.*, 3.0.*, 3.1.*] + exclude: + # exclude python 3.5 with django v3+ + - python: 3.5 + django: 3.0.* + - python: 3.5 + django: 3.1.* steps: - uses: actions/checkout@v2