-
-
Notifications
You must be signed in to change notification settings - Fork 78
36 lines (36 loc) · 1.04 KB
/
phpstan-dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: PHPStan other versions
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: 0 0 * * *
jobs:
dev:
runs-on: "ubuntu-latest"
name: "PHPStan ${{ matrix.phpstan }}"
strategy:
matrix:
phpstan:
- '2.0.x-dev'
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: 8.1
tools: composer:v2
extensions: dom, curl, libxml, mbstring, zip, pdo, mysql, pdo_mysql, gd
- name: "Bump PHPStan"
run: "composer require --no-update phpstan/phpstan:${{ matrix.phpstan }}"
- name: "Add phpspec/prophecy-phpunit"
run: "composer require phpspec/prophecy-phpunit:^2 --dev --no-update"
- name: "Install dependencies"
run: "composer update --no-progress --prefer-dist"
- name: "PHPStan"
run: "php vendor/bin/phpstan analyze"
- name: "PHPUnit"
run: "php vendor/bin/phpunit"