-
Notifications
You must be signed in to change notification settings - Fork 4
29 lines (29 loc) · 1.2 KB
/
run-checks-tests.yaml
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
on: [push]
name: "Checks and tests"
jobs:
checks-and-tests:
name: Run checks and tests
runs-on: ubuntu-20.04
steps:
- name: GIT checkout branch - ${{ github.ref }}
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install PHP, extensions and tools
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: bcmath, gd, intl, pdo_pgsql, redis, pgsql, zip
tools: composer
- name: Install Composer dependencies
run: composer install --optimize-autoloader --no-interaction
- name: Ensure Symfony 4 version
run: composer update
- name: Run parallel-lint
run: php vendor/bin/parallel-lint ./src
- name: Run Easy Coding Standards
run: php vendor/bin/ecs check --verbose ./src ./tests
- name: Run PHPUnit
run: php vendor/bin/phpunit tests
- name: Run PHPStan level 5
run: php vendor/bin/phpstan analyze -c ./phpstan.neon ./src --level=5