Skip to content

Commit 9d137bb

Browse files
.github: fix typos, grammar, punctuation
1 parent 56f50a7 commit 9d137bb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
name: Publish Python Package
99

1010
on:
11-
# trigger when publishing a release
11+
# Trigger when publishing a release.
1212
release:
1313
types: [published]
1414

15-
# also allow triggering this workflow manually for testing
15+
# Also allow triggering this workflow manually for testing.
1616
workflow_dispatch:
1717

1818
jobs:
@@ -24,7 +24,7 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v3
2626
with:
27-
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
27+
# Fetching a single commit is not enough for setuptools-scm, so we fetch all commits.
2828
fetch-depth: 0
2929
- name: Set up Python
3030
uses: actions/setup-python@v2
@@ -36,7 +36,7 @@ jobs:
3636
- name: Build package
3737
run: |
3838
python setup.py sdist
39-
rm dist/*.orig # clean sdist_upip noise
39+
rm dist/*.orig # Remove sdist_upip noise.
4040
- name: Publish to Test PyPI
4141
uses: pypa/gh-action-pypi-publish@release/v1
4242
with:

.github/workflows/run_tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Build MicroPython
3333
id: build_micropython
3434
run: |
35-
echo "Building micropython"
35+
echo "Building MicroPython"
3636
git clone --depth 1 https://github.com/micropython/micropython.git
3737
pushd micropython/mpy-cross
3838
make
@@ -50,8 +50,8 @@ jobs:
5050
- name: Fetch binutils-esp32ulp
5151
id: fetch_binutils
5252
run: |
53-
echo "Fetching URL of pre-built esp32ulp-elf binaries"
54-
## URL to pre-built binaries is published in esp-idf
53+
echo "Fetching URL of prebuilt esp32ulp-elf binaries"
54+
## The URL to prebuilt binaries is published in ESP-IDF
5555
IDFVER=v5.0.1
5656
curl -s \
5757
-o tools.json \

0 commit comments

Comments
 (0)