From 56961ce0e67b9e55c5606ecbe4dbbf78c6ddfd43 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Wed, 5 Oct 2022 13:30:01 -0400 Subject: [PATCH] build: fix syntax error in GH-hosted tests workflow (#31105) We were seeing this error whenever unit tests were run from a fork (only forks use the GH-hosted workflow, which is why this was able to merge into master): You have an error in your yaml syntax on line 65 The comment hash (#) needs to be aligned with the rest of the text block. --- .github/workflows/unit-tests-gh-hosted.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests-gh-hosted.yml b/.github/workflows/unit-tests-gh-hosted.yml index c493bcdbf374..fd01feeccd99 100644 --- a/.github/workflows/unit-tests-gh-hosted.yml +++ b/.github/workflows/unit-tests-gh-hosted.yml @@ -67,7 +67,7 @@ jobs: run: | pip install -r requirements/pip.txt pip install -r requirements/edx/development.txt --src ${{ runner.temp }} -# edx-platform installs some Python projects from within the edx-platform repo itself. + # edx-platform installs some Python projects from within the edx-platform repo itself. pip install -e . pip install "django~=${{ matrix.django-version }}.0"