Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0b6b7d6

Browse files
committed
Start sentences and phrases for capital letters
End sentences with periods.
1 parentc976915 commit0b6b7d6

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

‎.github/workflows/ci.yaml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -12,54 +12,54 @@ env:
1212

1313
jobs:
1414
python_sdist:
15-
name:pyyaml sdist
15+
name:PyYAML sdist
1616
runs-on:ubuntu-latest
1717
steps:
18-
-name:checkout pyyaml
18+
-name:Checkout pyyaml
1919
uses:actions/checkout@v2
2020

21-
-name:install a python
21+
-name:Install a python
2222
uses:actions/setup-python@v2
2323
with:
2424
python-version:3.x
2525

26-
-name:install build deps
26+
-name:Install build deps
2727
run:|
2828
python -V
2929
python -m pip install build
3030
31-
-name:build sdist
31+
-name:Build sdist
3232
run:|
33-
#we DO want to force Cythoning, at least until 6.0
33+
#We DO want to force Cythoning, at least until 6.0.
3434
export PYYAML_FORCE_CYTHON=1
35-
#we don't actually want to build the lib
35+
#We don't actually want to build the lib.
3636
export PYYAML_FORCE_LIBYAML=0
3737
3838
python -m build .
3939
40-
#ensure exactly one artifact was produced
40+
#Ensure exactly one artifact was produced.
4141
[[ $(shopt -s nullglob; ls dist/*.tar.gz | wc -w) == 1 ]] || {
42-
echo "unexpected content in dist dir: $(ls dist/*.tar.gz)"
42+
echo "Unexpected content in dist dir:'$(ls dist/*.tar.gz)'."
4343
exit 1
4444
}
4545
46-
-name:test sdist
46+
-name:Test sdist
4747
run:|
48-
#install some libyaml headers
49-
# TODOshould we smoke test the sdist against the libyaml we built?
48+
#Install some libyaml headers.
49+
# TODOShould we smoke test the sdist against the libyaml we built?
5050
sudo apt update
5151
sudo apt install libyaml-dev -y
5252
53-
#ensure Cython is not present so we use only what's in the sdist
53+
#Ensure Cython is not present so we use only what's in the sdist.
5454
python -m pip uninstall Cython -y ||true
5555
56-
#pass no extra args- we should auto-install with libyaml since it's
57-
# present
56+
#Pass no extra args.
57+
#We should auto-install with libyaml since it'spresent.
5858
python -m pip install dist/*.tar.gz -v
5959
6060
python packaging/build/smoketest.py
6161
62-
-name:upload sdist artifact
62+
-name:Upload sdist artifact
6363
uses:actions/upload-artifact@v2
6464
with:
6565
name:dist
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
matrix:
7474
platform:
75-
# manylinux1 is forward-compatible to 2010/2014
75+
# manylinux1 is forward-compatible to 2010/2014.
7676
#- manylinux2014
7777
#- manylinux2010
7878
-manylinux1
@@ -81,18 +81,18 @@ jobs:
8181
env:
8282
DOCKER_IMAGE:quay.io/pypa/${{matrix.platform}}_${{matrix.arch}}
8383
steps:
84-
-name:check cached libyaml state
84+
-name:Check cached libyaml state
8585
id:cached_libyaml
8686
uses:actions/cache@v2
8787
with:
8888
path:libyaml
8989
key:libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}}
9090

91-
-name:checkout pyyaml
91+
-name:Checkout pyyaml
9292
uses:actions/checkout@v2
9393
if:steps.cached_libyaml.outputs.cache-hit != 'true'
9494

95-
-name:build libyaml
95+
-name:Build libyaml
9696
run:>
9797
docker run --rm
9898
--volume "$(pwd):/io"
@@ -110,16 +110,16 @@ jobs:
110110
strategy:
111111
matrix:
112112
platform:
113-
#so long as manylinux1 container builds work, they're
114-
# forward-compatible to 2010/2014
113+
#So long as manylinux1 container builds work, they're
114+
# forward-compatible to 2010/2014.
115115
# - manylinux2014
116116
# - manylinux2010
117117
-manylinux1
118118
arch:
119119
-x86_64
120120
python_tag:
121121
# NB manylinux >=2014 containers don't have Python 2.7, so we have to
122-
# use exclude to skip it
122+
# use exclude to skip it.
123123
-cp27-cp27mu
124124
-cp36-cp36m
125125
-cp37-cp37m
@@ -137,26 +137,26 @@ jobs:
137137
steps:
138138
-uses:actions/checkout@v2
139139

140-
-name:fetch cached libyaml
140+
-name:Fetch cached libyaml
141141
id:cached_libyaml
142142
uses:actions/cache@v2
143143
with:
144144
path:libyaml
145145
key:libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}}
146146

147-
-name:ensure libyaml fetched
147+
-name:Ensure libyaml fetched
148148
run:exit 1
149149
if:steps.cached_libyaml.outputs.cache-hit != 'true'
150150

151-
-name:start container
151+
-name:Start container
152152
run:>
153153
docker run --rm --tty --detach
154154
--name worker
155155
--volume "$(pwd):/io"
156156
"$DOCKER_IMAGE"
157157
bash
158158
159-
-name:build/test/package
159+
-name:Build/Test/Package
160160
run:>
161161
docker exec
162162
--env PYTHON_TAG
@@ -181,18 +181,18 @@ jobs:
181181
arch:
182182
-x86_64
183183
steps:
184-
-name:check cached libyaml state
184+
-name:Check cached libyaml state
185185
id:cached_libyaml
186186
uses:actions/cache@v2
187187
with:
188188
path:libyaml
189189
key:libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}}
190190

191-
-name:checkout pyyaml
191+
-name:Checkout pyyaml
192192
uses:actions/checkout@v2
193193
if:steps.cached_libyaml.outputs.cache-hit != 'true'
194194

195-
-name:build libyaml
195+
-name:Build libyaml
196196
env:
197197
MACOSX_DEPLOYMENT_TARGET:'10.9'
198198
run:|
@@ -217,26 +217,26 @@ jobs:
217217
-cp38*
218218
-cp39*
219219
steps:
220-
-name:checkout pyyaml
220+
-name:Checkout pyyaml
221221
uses:actions/checkout@v2
222222

223-
-name:get cached libyaml state
223+
-name:Get cached libyaml state
224224
id:cached_libyaml
225225
uses:actions/cache@v2
226226
with:
227227
path:libyaml
228228
key:libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}}
229229

230-
-name:ensure libyaml fetched
230+
-name:Ensure libyaml fetched
231231
run:exit 1
232232
if:steps.cached_libyaml.outputs.cache-hit != 'true'
233233

234-
-name:install a python
234+
-name:Install a python
235235
uses:actions/setup-python@v2
236236
with:
237237
python-version:3.x
238238

239-
-name:build/test/package
239+
-name:Build/Test/Package
240240
env:
241241
CIBW_BUILD:${{matrix.python_tag}}
242242
CIBW_BUILD_VERBOSITY:1

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp