Skip to content

DEBUG local install

DEBUG local install #1

Workflow file for this run

name: "Local install"
on:
push:
branches:
- "*"
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "8.2"
ini-file: development
extensions: mbstring
- name: "Install dependencies"
run: "composer install --no-interaction --no-progress"
- name: "Push changes"
run: |
git config --global user.name 'Bot'
git config --global user.email 'bot@noreply.github.com'
git commit -am "Add /vendor/* files"
git push