File tree Expand file tree Collapse file tree 3 files changed +39
-1
lines changed Expand file tree Collapse file tree 3 files changed +39
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : " Tests"
2
+
3
+ on :
4
+ push :
5
+
6
+ jobs :
7
+ phpunit :
8
+ name : " Tests"
9
+
10
+ runs-on : ${{ matrix.operating-system }}
11
+
12
+ strategy :
13
+ matrix :
14
+ php-version :
15
+ - " 7.4"
16
+ - " 8.0"
17
+ - " 8.1"
18
+ operating-system :
19
+ - " ubuntu-latest"
20
+
21
+ steps :
22
+ - name : " Checkout"
23
+ uses : " actions/checkout@v2"
24
+
25
+ - name : " Install PHP"
26
+ uses : " shivammathur/setup-php@v2"
27
+ with :
28
+ php-version : " ${{ matrix.php-version }}"
29
+ ini-values : memory_limit=-1
30
+ tools : composer:v2
31
+
32
+ - name : " Install dependencies"
33
+ run : " composer install --no-interaction --no-progress --no-suggest"
34
+
35
+ - name : " Tests"
36
+ run : " php bin/test.php"
Original file line number Diff line number Diff line change 1
1
# PHP generics written in PHP
2
2
3
+ ![ Tests] ( https://github.com/mrsuh/php-generics/actions/workflows/tests.yml/badge.svg )
4
+
3
5
## Require
4
6
5
7
* PHP >= 7.4
Original file line number Diff line number Diff line change 23
23
"require" : {
24
24
"php" : " >=7.4" ,
25
25
"composer-plugin-api" : " ^1.0|^2.0" ,
26
- "mrsuh/php-parser" : " 94.13.2 " ,
26
+ "mrsuh/php-parser" : " 94.13.3 " ,
27
27
"symfony/console" : " ^4.0|^5.0" ,
28
28
"symfony/filesystem" : " ^4.0|^5.0" ,
29
29
"symfony/finder" : " ^4.0|^5.0"
You can’t perform that action at this time.
0 commit comments