We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe30ba3 commit 54f0706Copy full SHA for 54f0706
.github/workflows/checks.yml
@@ -12,11 +12,20 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - name: Permissions
16
- run: git config --global --add safe.directory /github/workspace
17
18
- name: Checkout code
19
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
20
+
21
+ - name: Install PHP with extensions.
22
+ uses: shivammathur/setup-php@v2
23
24
+ php-version: "8.2"
25
26
+ - name: Install roave/backward-compatibility-check.
27
+ run: composer require --dev roave/backward-compatibility-check psr/http-factory
28
29
+ - name: Run roave/backward-compatibility-check.
30
+ run: vendor/bin/roave-backward-compatibility-check
31
- - name: Roave BC Check
- uses: "docker://nyholm/roave-bc-check-ga"
0 commit comments