mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 22:07:51 +00:00
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:
parent
d3d5e29432
commit
88e3005abb
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -136,9 +136,10 @@ jobs:
|
|||||||
# See notes about parallel builds on GitHub Actions at
|
# See notes about parallel builds on GitHub Actions at
|
||||||
# https://coveralls-python.readthedocs.io/en/latest/usage/configuration.html
|
# https://coveralls-python.readthedocs.io/en/latest/usage/configuration.html
|
||||||
finish-coverage-report:
|
finish-coverage-report:
|
||||||
needs: coverage
|
needs:
|
||||||
runs-on: ubuntu-latest
|
- "coverage"
|
||||||
container: python:3-slim
|
runs-on: "ubuntu-latest"
|
||||||
|
container: "python:3-slim"
|
||||||
steps:
|
steps:
|
||||||
- name: "Indicate completion to coveralls.io"
|
- name: "Indicate completion to coveralls.io"
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user