Skip to content

Commit 6d0ce37

Browse files
committed
Replace quotes with >-.
1 parent 6659bf7 commit 6d0ce37

File tree

1 file changed

+28
-14
lines changed

1 file changed

+28
-14
lines changed

.github/workflows/ci-cd.yml

Lines changed: 28 additions & 14 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,36 +509,47 @@ jobs:
506509
- macos-latest
507510
- windows-latest
508511
python-version:
509-
- "3.11"
512+
- >-
513+
3.11
510514
- pypy-3.9
511-
- "3.6"
512-
- "3.8"
513-
- "3.7"
514-
- "3.9"
515-
- "3.10"
515+
- >-
516+
3.6
517+
- >-
518+
3.8
519+
- >-
520+
3.7
521+
- >-
522+
3.9
523+
- >-
524+
3.10
516525
- pypy-3.6
517-
- "3.12"
526+
- >-
527+
3.12
518528
tested-artifact:
519529
- wheel
520530
- sdist
521531
exclude:
522532
# NOTE: GNU/Linux CPython 3.6 is not built for Ubuntu 22
523533
- os: ubuntu-22.04
524-
python-version: "3.6"
534+
python-version: >-
535+
3.6
525536
- os: windows-latest
526537
python-version: pypy-3.6
527538
- os: macos-latest
528539
python-version: pypy-3.6
529540
# CPython 3.6 and 3.7 is no longer available on macos-latest
530541
- os: macos-latest
531-
python-version: "3.6"
542+
python-version: >-
543+
3.6
532544
- os: macos-latest
533-
python-version: "3.7"
545+
python-version: >-
546+
3.7
534547
include:
535548
# NOTE: The last GNU/Linux CPython 3.6 available is built for Ubuntu 20
536549
# https://github.com/actions/python-versions/blob/6dd0b75/versions-manifest.json#L3956-L3960
537550
- os: ubuntu-20.04
538-
python-version: "3.6"
551+
python-version: >-
552+
3.6
539553
tested-artifact: wheel
540554

541555
continue-on-error: >-

0 commit comments

Comments
 (0)