File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - " *"
7
+ push :
8
+ branches :
9
+ - " *"
10
+
11
+ jobs :
12
+ checks :
13
+ name : Check PHP 8.1
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - name : Checkout code
18
+ uses : actions/checkout@v2
19
+
20
+ - name : Set up PHP 8.1
21
+ uses : shivammathur/setup-php@v2
22
+ with :
23
+ php-version : ' 8.1'
24
+
25
+ - name : Install Dependencies
26
+ run : composer install --prefer-dist --ignore-platform-reqs --no-interaction
27
+
28
+ - name : Check code styling
29
+ run : composer ecs-check
30
+
31
+ - name : Create keys
32
+ run : sh ./bin/create_keys
33
+
34
+ - name : Run unit and feature tests
35
+ run : composer test
Original file line number Diff line number Diff line change 23
23
" passport"
24
24
],
25
25
"require" : {
26
- "php" : " ^8.2 " ,
26
+ "php" : " ^8.1 " ,
27
27
"lcobucci/jwt" : " ^4.0|^4.3|^5.0" ,
28
28
"league/oauth2-server" : " ^8.2.0" ,
29
29
"laravel/passport" : " ^11.0|^12.0" ,
You can’t perform that action at this time.
0 commit comments