Skip to content

Commit fc0e17c

Browse files
committed
remove Unicode emoji's, and trim whitespace
1 parent cce9eab commit fc0e17c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/doc/en/developer/portability_testing.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,9 +1169,9 @@ Here we give a very short sampling of ``act``'s capabilities. If you installed s
11691169
After the set up, one can e.g. list all the available linting actions::
11701170

11711171
[alice@localhost sage]$ gh act -l | grep lint
1172-
0 lint-pycodestyle Code style check with pycodestyle Lint lint.yml push,pull_request
1173-
0 lint-relint Code style check with relint Lint lint.yml push,pull_request
1174-
0 lint-rst Validate docstring markup as RST Lint lint.yml push,pull_request
1172+
0 lint-pycodestyle Code style check with pycodestyle Lint lint.yml push,pull_request
1173+
0 lint-relint Code style check with relint Lint lint.yml push,pull_request
1174+
0 lint-rst Validate docstring markup as RST Lint lint.yml push,pull_request
11751175
[alice@localhost sage]$
11761176

11771177
run a particular action ``lint-rst`` ::
@@ -1185,17 +1185,17 @@ By default, ``act`` pulls all the data needed from the next, but it can also cac
11851185
speeding up repeated runs quite a lot. The following repeats running of ``lint-rst`` using cached data::
11861186

11871187
[alice@localhost sage]$ gh act -p false -r -j lint-rst
1188-
[Lint/Validate docstring markup as RST] 🚀 Start image=catthehacker/ubuntu:act-latest
1188+
[Lint/Validate docstring markup as RST] Start image=catthehacker/ubuntu:act-latest
11891189
...
11901190
| rst: commands[0] /home/alice/work/software/sage/src> flake8 --select=RST
11911191
| rst: OK (472.60=setup[0.09]+cmd[472.51] seconds)
11921192
| congratulations :) (474.10 seconds)
11931193
...
1194-
[Lint/Validate docstring markup as RST] Success - Main Lint using tox -e rst
1195-
[Lint/Validate docstring markup as RST] Run Post Set up Python
1196-
[Lint/Validate docstring markup as RST] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-python@v4/dist/cache-save/index.js] user= workdir=
1197-
[Lint/Validate docstring markup as RST] Success - Post Set up Python
1198-
[Lint/Validate docstring markup as RST] 🏁 Job succeeded
1194+
[Lint/Validate docstring markup as RST] Success - Main Lint using tox -e rst
1195+
[Lint/Validate docstring markup as RST] Run Post Set up Python
1196+
[Lint/Validate docstring markup as RST] docker exec cmd=[node /var/run/act/actions/actions-setup-python@v4/dist/cache-save/index.js] user= workdir=
1197+
[Lint/Validate docstring markup as RST] Success - Post Set up Python
1198+
[Lint/Validate docstring markup as RST] Job succeeded
11991199

12001200
Here ``-p false`` means using already pulled Docker images, and ``-r`` means do not remove Docker images
12011201
after a successful run which used them. This, and many more details, can be found by running ``gh act -h``, as well

0 commit comments

Comments
 (0)