Skip to content

Commit

Permalink
Merge pull request #35 from wp-oop/doc/fix-service-name
Browse files Browse the repository at this point in the history
Correct service name in example commands
  • Loading branch information
XedinUnknown committed Aug 12, 2023
2 parents 9fd110a + 1d886bd commit 179d0c5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,17 +299,18 @@ as long as they are configured to be passed into the service by `docker-compose.
- The `--activate` flag activates the plugin after it's installed.

#### QA
All QA tools can be run together by using the `qa` target in the included Makefile:
Run all QA tools at once by using the `qa` target in the included Makefile.
All QA is done in the `test` service.

```bash
docker compose run --rm build make qa
docker compose run --rm test make qa
```

##### Testing Code
Run all tests at once using the `test` target:

```bash
docker compose run --rm build make test
docker compose run --rm test make test
```

- **PHPUnit**
Expand All @@ -318,7 +319,7 @@ docker compose run --rm build make test
that it's working by running the sample tests:
```bash
docker compose run --rm build make test-php
docker compose run --rm test make test-php
```
- Will also be run automatically on CI.
Expand All @@ -328,7 +329,7 @@ docker compose run --rm build make test
Run all static analysis tools at once by using the `scan` target:
```bash
docker compose run --rm build make scan
docker compose run --rm test make scan
```
- **Psalm**
Expand Down

0 comments on commit 179d0c5

Please sign in to comment.