Skip to content

Commit f85c7aa

Browse files
committed
Minor tweaks
1 parent 702f1c6 commit f85c7aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For example:
5959
* `.github/workflows/push.yml`
6060
* This is used when a commit is pushed to your repository.
6161

62-
The simplest example of using this action would be to create the file `.github/workflows/pull_request.yml' with the following contents:
62+
The simplest example of using this action would be to create the file `.github/workflows/pull_request.yml` with the following contents:
6363

6464
```
6565
on: pull_request
@@ -74,7 +74,7 @@ jobs:
7474
uses: skx/github-action-tester@master
7575
```
7676

77-
This example will run the default test-script `.github/run-tests.sh` every time a pull-request is created, edited, or updated.
77+
This example will run the default test-script, `.github/run-tests.sh`, every time a pull-request is created, edited, or updated.
7878

7979

8080

@@ -84,7 +84,7 @@ As noted github actions can be launched on multiple events, for example pushes t
8484

8585
Because you probably wish to run different tests/scripts on these different events it is possible to override the name/path of the shell-script which is executed on a per-event basis.
8686

87-
For example might wish to run thorough tests upon pull-requests, and a smaller subset when a push is made to your `master` branch (on the assumption that commits there are rare, and the usual workflow will have ensured the full-tests will have been executed via pull-requests).
87+
For example you might wish to run more thorough tests upon pull-requests, and a smaller subset when a push is made to your `master` branch (on the assumption that commits there are rare, and the usual workflow will have ensured the full-tests will have been executed via pull-requests).
8888

8989
As an example you might create a workflow for use solely with pushes to master, in the file `.github/workflows/push.yml`:
9090

0 commit comments

Comments
 (0)