Skip to content

Commit 4719e08

Browse files
committed
DEBUG local install
1 parent 7b2fd6c commit 4719e08

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/compiler/tmp
33
/compiler/vendor
44
/conf/config.local.yml
5-
/vendor
65
/.idea/*
76
!.idea/icon.png
87
/tests/tmp

0 commit comments

Comments
 (0)