File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,20 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - name : Permissions
16
- run : git config --global --add safe.directory /github/workspace
17
15
18
16
- name : Checkout code
19
- uses : actions/checkout@v2
17
+ uses : actions/checkout@v3
18
+ with :
19
+ fetch-depth : 0
20
+
21
+ - name : Install PHP with extensions.
22
+ uses : shivammathur/setup-php@v2
23
+ with :
24
+ php-version : " 8.2"
25
+
26
+ - name : Install roave/backward-compatibility-check.
27
+ run : composer require --no-update psr/http-factory && composer require --dev roave/backward-compatibility-check
28
+
29
+ - name : Run roave/backward-compatibility-check.
30
+ run : vendor/bin/roave-backward-compatibility-check
20
31
21
- - name : Roave BC Check
22
- uses : " docker://nyholm/roave-bc-check-ga"
You can’t perform that action at this time.
0 commit comments