You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,24 @@ $numerals = new SavingIterator(
99
99
);
100
100
```
101
101
102
+
## How to run tests
103
+
104
+
First, install [Docker](https://www.docker.com/). After that, run:
105
+
106
+
```bash
107
+
docker-compose build
108
+
109
+
docker-compose run --rm php bash
110
+
```
111
+
112
+
After you start the container, install dependencies and run tests:
113
+
114
+
```bash
115
+
composer install
116
+
117
+
vendor/bin/phpunit tests
118
+
```
119
+
102
120
## How to contribute
103
121
104
122
[Fork this repository](https://docs.github.com/en/get-started/quickstart/fork-a-repo), then create a folder for it and install [Composer](https://getcomposer.org/download/) if you do not have it.
0 commit comments