1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Add ObjectManagedLoader for PHPStan

This commit is contained in:
Jeremy Benoist 2023-11-16 09:36:47 +01:00
parent f272481ec4
commit 2149ef4510
No known key found for this signature in database
GPG key ID: 7168D5DD29F38552
10 changed files with 56 additions and 52 deletions

View file

@ -30,6 +30,12 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Setup MySQL"
run: |
sudo systemctl start mysql.service
sudo mysql -u root -proot -h 127.0.0.1 -e "CREATE DATABASE wallabag_test"
cp app/config/tests/parameters_test.mysql.yml app/config/parameters_test.yml
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
with: