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
+19-3Lines changed: 19 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ jobs:
21
21
runs-on: ubuntu-latest
22
22
23
23
steps:
24
-
- uses: actions/checkout@v1
24
+
- uses: actions/checkout@v2
25
25
- uses: php-actions/composer@v1 # or alternative dependency management
26
-
- uses: php-actions/phpunit@v1
26
+
- uses: php-actions/phpunit@v8
27
27
# ... then your own project steps ...
28
28
```
29
29
@@ -48,10 +48,26 @@ jobs:
48
48
...
49
49
50
50
- name: PHPUnit tests
51
-
uses: php-actions/phpunit@v1
51
+
uses: php-actions/phpunit@v8
52
52
with:
53
53
config: custom/path/to/phpunit.xml
54
54
memory: 256M
55
55
```
56
56
57
57
If you require other configurations of phpunit, please request them in the [Github issue tracker](https://github.com/php-actions/phpunit/issues)
58
+
59
+
Versions
60
+
--------
61
+
62
+
The Github Actions version numbers are in sync with the PHPUnit version. This allows you to specify which version of PHPUnit your project should run by using the @ syntax.
63
+
64
+
Current versions supported by this Action:
65
+
66
+
+ 9.*
67
+
+ 8.*
68
+
69
+
If you require a specific version that is not listed here, please request them in the [Github issue tracker](https://github.com/php-actions/phpunit/issues)
70
+
71
+
If you found this repository helpful, please consider [sponsoring the developer][sponsor].
0 commit comments