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
@@ -91,6 +91,24 @@ $numerals = new SavingIterator(
91
91
);
92
92
```
93
93
94
+
## How to run tests
95
+
96
+
First, install [Docker](https://www.docker.com/). After that, run:
97
+
98
+
```bash
99
+
docker-compose build
100
+
101
+
docker-compose run --rm php bash
102
+
```
103
+
104
+
After you start the container, install dependencies and run tests:
105
+
106
+
```bash
107
+
composer install
108
+
109
+
vendor/bin/phpunit tests
110
+
```
111
+
94
112
## How to contribute
95
113
96
114
[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