diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index f9a79d86c04..23686aed68c 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -36,7 +36,7 @@ jobs: - name: Check for valid Python & Merge Conflicts run: | - python -m compileall -f "${GITHUB_WORKSPACE}" + python -m compileall -fq "${GITHUB_WORKSPACE}" if grep -lr --exclude-dir=node_modules "^<<<<<<< " "${GITHUB_WORKSPACE}" then echo "Found merge conflicts" exit 1 diff --git a/.github/workflows/server-tests-mariadb.yml b/.github/workflows/server-tests-mariadb.yml index 42b9905405f..fdc7f09bfc5 100644 --- a/.github/workflows/server-tests-mariadb.yml +++ b/.github/workflows/server-tests-mariadb.yml @@ -65,7 +65,7 @@ jobs: - name: Check for valid Python & Merge Conflicts run: | - python -m compileall -f "${GITHUB_WORKSPACE}" + python -m compileall -fq "${GITHUB_WORKSPACE}" if grep -lr --exclude-dir=node_modules "^<<<<<<< " "${GITHUB_WORKSPACE}" then echo "Found merge conflicts" exit 1 diff --git a/.github/workflows/server-tests-postgres.yml b/.github/workflows/server-tests-postgres.yml index 7b2d52acd19..e814a8b13dc 100644 --- a/.github/workflows/server-tests-postgres.yml +++ b/.github/workflows/server-tests-postgres.yml @@ -50,7 +50,7 @@ jobs: - name: Check for valid Python & Merge Conflicts run: | - python -m compileall -f "${GITHUB_WORKSPACE}" + python -m compileall -fq "${GITHUB_WORKSPACE}" if grep -lr --exclude-dir=node_modules "^<<<<<<< " "${GITHUB_WORKSPACE}" then echo "Found merge conflicts" exit 1