Skip to content

Merge branch 'III-6747-typehinting-for-udb3' of github.com:cultuurnet… #43

Merge branch 'III-6747-typehinting-for-udb3' of github.com:cultuurnet…

Merge branch 'III-6747-typehinting-for-udb3' of github.com:cultuurnet… #43

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.4]
steps:
- name: 📤 Checkout project
uses: actions/checkout@v3
- name: 🐘 Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: 📦 Install dependencies
run: composer install --no-progress --no-suggest
- name: ✅ Run tests
run: vendor/bin/phpunit
phpstan:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.4]
steps:
- name: 📤 Checkout project
uses: actions/checkout@v3
- name: 🐘 Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: 📦 Install dependencies
run: composer install --no-progress --no-suggest
- name: 🔍 Run PHPStan
run: vendor/bin/phpstan analyse --memory-limit=512M