From 88e3005abbea9df8d57104352c122e90d785d771 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Wed, 31 Mar 2021 11:53:02 -0400 Subject: [PATCH] Quote some YAML strings Following PR review feedback. Some parts of GitHub Actions configuration follows convention in GA's documentation, in which YAML strings are not quoted, but that probably is not a good idea. We also don't want to change all the strings in this unrelated set of changes. So we will quote strings as we go, in the blocks we touch. --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d565ede47..39cd114d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,9 +136,10 @@ jobs: # See notes about parallel builds on GitHub Actions at # https://coveralls-python.readthedocs.io/en/latest/usage/configuration.html finish-coverage-report: - needs: coverage - runs-on: ubuntu-latest - container: python:3-slim + needs: + - "coverage" + runs-on: "ubuntu-latest" + container: "python:3-slim" steps: - name: "Indicate completion to coveralls.io" run: |