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.
This commit is contained in:
Sajith Sasidharan 2021-03-31 11:53:02 -04:00
parent d3d5e29432
commit 88e3005abb

View File

@ -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: |