File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ # https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2+
3+ name : " Backward Compatibility"
4+
5+ on :
6+ pull_request :
7+ push :
8+ branches :
9+ - " master"
10+
11+ jobs :
12+ backward-compatibility :
13+ name : " Backward Compatibility"
14+
15+ runs-on : " ubuntu-latest"
16+ timeout-minutes : 30
17+
18+ steps :
19+ - name : " Checkout"
20+ uses : " actions/checkout@v2"
21+ with :
22+ fetch-depth : 0
23+
24+ - name : " Install PHP"
25+ uses : " shivammathur/setup-php@v2"
26+ with :
27+ coverage : " none"
28+ php-version : " 7.4"
29+
30+ - name : " Install dependencies"
31+ run : " composer install --no-dev --no-interaction --no-progress --no-suggest"
32+
33+ - name : " Install BackwardCompatibilityCheck"
34+ run : " composer global require --dev roave/backward-compatibility-check"
35+
36+ - name : " Check"
37+ run : " $(composer global config bin-dir --absolute)/roave-backward-compatibility-check"
You can’t perform that action at this time.
0 commit comments