From 9caf63f41213f78089a2b431ce425bc76e76a3ff Mon Sep 17 00:00:00 2001 From: Samuel Huang Date: Tue, 1 Oct 2024 00:41:34 -0700 Subject: [PATCH] Properly indent workflow steps --- .github/workflows/ci.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0970bfc..6a9cf15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,22 +34,22 @@ jobs: - 5432:5432 steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Set up Python 3.12 - uses: actions/setup-python@v3 - with: - python-version: '3.12' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Lint with ruff - run: | - ruff check - - name: Run tests and report with coverage - run: | - coverage run manage.py test - coverage report - env: - DJANGO_SETTINGS_MODULE: 'chowist.settings.test' + - name: Checkout code + uses: actions/checkout@v4 + - name: Set up Python 3.12 + uses: actions/setup-python@v3 + with: + python-version: '3.12' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Lint with ruff + run: | + ruff check + - name: Run tests and report with coverage + run: | + coverage run manage.py test + coverage report + env: + DJANGO_SETTINGS_MODULE: 'chowist.settings.test'