@@ -1169,9 +1169,9 @@ Here we give a very short sampling of ``act``'s capabilities. If you installed s
1169
1169
After the set up, one can e.g. list all the available linting actions::
1170
1170
1171
1171
[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
1175
1175
[alice@localhost sage]$
1176
1176
1177
1177
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
1185
1185
speeding up repeated runs quite a lot. The following repeats running of ``lint-rst `` using cached data::
1186
1186
1187
1187
[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
1189
1189
...
1190
1190
| rst: commands[0] /home/alice/work/software/sage/src> flake8 --select=RST
1191
1191
| rst: OK (472.60=setup[0.09]+cmd[472.51] seconds)
1192
1192
| congratulations :) (474.10 seconds)
1193
1193
...
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
1199
1199
1200
1200
Here ``-p false `` means using already pulled Docker images, and ``-r `` means do not remove Docker images
1201
1201
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