-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (66 loc) · 1.95 KB
/
php.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: CI for AnzuSystems Core-DAM Bundle by Petit Press a.s. (www.sme.sk)
on:
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
include:
- php-version: 8.3
docker-image: anzusystems/php:3.4.0-php83-cli-vipsffmpeg
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.15.0
ports:
- 9200:9200
env:
cluster.routing.allocation.disk.threshold_enabled: false
discovery.type: "single-node"
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
xpack.security.enabled: false
mysql:
image: mysql:8.0
ports:
- 3306:3306
env:
MYSQL_ROOT_PASSWORD: admin
MYSQL_DATABASE: commonbundle
mongo:
image: mongo:7.0
ports:
- 27017:27017
env:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: admin
redis:
image: redis:7.2
ports:
- 6379:6379
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-latest
container: ${{ matrix.docker-image }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Validate composer.json
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json', '*/composer.json') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-ansi --no-interaction --no-scripts
- name: Run Security check
run: composer audit --no-scripts
- name: Run ECS style check
run: vendor/bin/ecs check -vv
- name: Run PSALM style check
run: vendor/bin/psalm
- name: Run PHPUnit tests
run: vendor/bin/phpunit