From 833f641cee041ba2105a6e67ca05a67ee9c064b6 Mon Sep 17 00:00:00 2001 From: Amanda Savluchinske Date: Mon, 18 Dec 2023 14:19:19 -0300 Subject: [PATCH] Corrects identation --- .github/workflows/config.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index f34f80b..dcf83d9 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -13,16 +13,16 @@ jobs: max-parallel: 4 matrix: python-version: [3.7, 3.8, 3.9] - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install Dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Run Tests - run: | - python manage.py test + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install Dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run Tests + run: | + python manage.py test