Skip to content

Commit

Permalink
Replace quotes with >-.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Aug 7, 2024
1 parent 6659bf7 commit 6d0ce37
Showing 1 changed file with 28 additions and 14 deletions.
42 changes: 28 additions & 14 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ jobs:
os:
- Ubuntu
python-version:
- "3.12"
- >-
3.12
env:
TOXENV: lint
Expand Down Expand Up @@ -194,7 +195,8 @@ jobs:
- name: Switch to using Python 3.12 by default
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: >-
3.12
- name: >-
Mark the build as non-tagged
${{ github.event.repository.default_branch }} build
Expand Down Expand Up @@ -399,7 +401,8 @@ jobs:
- name: Switch to using Python 3.12 by default
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: >-
3.12
- name: >-
Calculate Python interpreter version hash value
for use in the cache key
Expand Down Expand Up @@ -506,36 +509,47 @@ jobs:
- macos-latest
- windows-latest
python-version:
- "3.11"
- >-
3.11
- pypy-3.9
- "3.6"
- "3.8"
- "3.7"
- "3.9"
- "3.10"
- >-
3.6
- >-
3.8
- >-
3.7
- >-
3.9
- >-
3.10
- pypy-3.6
- "3.12"
- >-
3.12
tested-artifact:
- wheel
- sdist
exclude:
# NOTE: GNU/Linux CPython 3.6 is not built for Ubuntu 22
- os: ubuntu-22.04
python-version: "3.6"
python-version: >-
3.6
- os: windows-latest
python-version: pypy-3.6
- os: macos-latest
python-version: pypy-3.6
# CPython 3.6 and 3.7 is no longer available on macos-latest
- os: macos-latest
python-version: "3.6"
python-version: >-
3.6
- os: macos-latest
python-version: "3.7"
python-version: >-
3.7
include:
# NOTE: The last GNU/Linux CPython 3.6 available is built for Ubuntu 20
# https://github.com/actions/python-versions/blob/6dd0b75/versions-manifest.json#L3956-L3960
- os: ubuntu-20.04
python-version: "3.6"
python-version: >-
3.6
tested-artifact: wheel

continue-on-error: >-
Expand Down

0 comments on commit 6d0ce37

Please sign in to comment.