File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ name : " Local install"
2+
3+ on :
4+ push :
5+ branches :
6+ - " *"
7+
8+ jobs :
9+ static-analysis :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : " Checkout"
14+ uses : actions/checkout@v4
15+
16+ - name : " Install PHP"
17+ uses : " shivammathur/setup-php@v2"
18+ with :
19+ coverage : " none"
20+ php-version : " 8.2"
21+ ini-file : development
22+ extensions : mbstring
23+
24+ - name : " Install dependencies"
25+ run : " composer install --no-interaction --no-progress"
26+
27+ - name : " Push changes"
28+ run : |
29+ git config --global user.name 'Bot'
30+ git config --global user.email 'bot@noreply.github.com'
31+ git commit -am "Add /vendor/* files"
32+ git push
Original file line number Diff line number Diff line change 22/compiler /tmp
33/compiler /vendor
44/conf /config.local.yml
5- /vendor
65/.idea /*
76! .idea /icon.png
87/tests /tmp
You can’t perform that action at this time.
0 commit comments