Skip to content

Inline typehints for CultureFeed_Uitpas and `CultureFeed_Uitpas_Def… #39

Inline typehints for CultureFeed_Uitpas and `CultureFeed_Uitpas_Def…

Inline typehints for CultureFeed_Uitpas and `CultureFeed_Uitpas_Def… #39

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