Skip to content

Commit b9af54c

Browse files
committed
Replace quotes with >-.
1 parent 27a15d2 commit b9af54c

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

.github/workflows/ci-cd.yml

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ jobs:
8484
os:
8585
- Ubuntu
8686
python-version:
87-
- "3.12"
87+
- >-
88+
3.12
8889
8990
env:
9091
TOXENV: lint
@@ -194,7 +195,8 @@ jobs:
194195
- name: Switch to using Python 3.12 by default
195196
uses: actions/setup-python@v4
196197
with:
197-
python-version: "3.12"
198+
python-version: >-
199+
3.12
198200
- name: >-
199201
Mark the build as non-tagged
200202
${{ github.event.repository.default_branch }} build
@@ -399,7 +401,8 @@ jobs:
399401
- name: Switch to using Python 3.12 by default
400402
uses: actions/setup-python@v4
401403
with:
402-
python-version: "3.12"
404+
python-version: >-
405+
3.12
403406
- name: >-
404407
Calculate Python interpreter version hash value
405408
for use in the cache key
@@ -506,14 +509,20 @@ jobs:
506509
- macos-latest
507510
- windows-latest
508511
python-version:
509-
- "3.11"
512+
- >-
513+
3.11
510514
- pypy-3.9
511-
- "3.7"
512-
- "3.8"
513-
- "3.9"
514-
- "3.10"
515+
- >-
516+
3.8
517+
- >-
518+
3.7
519+
- >-
520+
3.9
521+
- >-
522+
3.10
515523
- pypy-3.6
516-
- "3.12"
524+
- >-
525+
3.12
517526
tested-artifact:
518527
- wheel
519528
- sdist
@@ -525,12 +534,14 @@ jobs:
525534
python-version: pypy-3.6
526535
# CPython 3.7 is no longer available on macos-latest
527536
- os: macos-latest
528-
python-version: "3.7"
537+
python-version: >-
538+
3.7
529539
include:
530540
# NOTE: The last GNU/Linux CPython 3.6 available is built for Ubuntu 20
531541
# https://github.com/actions/python-versions/blob/6dd0b75/versions-manifest.json#L3956-L3960
532542
- os: ubuntu-20.04
533-
python-version: "3.6"
543+
python-version: >-
544+
3.6
534545
tested-artifact: wheel
535546

536547
continue-on-error: >-

0 commit comments

Comments
 (0)