forked from monsieurbiz/SyliusSettingsPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (53 loc) · 1.69 KB
/
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
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: Tests
on:
push:
branches: [ master ]
pull_request:
jobs:
php:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.0']
env:
SYMFONY_ARGS: --no-tls
COMPOSER_ARGS: --prefer-dist
DOCKER_INTERACTIVE_ARGS: -t
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Setup PHP
run: |
sudo update-alternatives --set php /usr/bin/php${{ matrix.php }}
echo "date.timezone=UTC" | sudo tee /etc/php/${{ matrix.php }}/cli/conf.d/timezone.ini
echo "${{ matrix.php }}" > .php-version
- name: Install symfony CLI
run: |
curl https://get.symfony.com/cli/installer | bash
echo "${HOME}/.symfony/bin" >> $GITHUB_PATH
- uses: actions/cache@v1
id: cache-composer
with:
path: /home/runner/.composer/cache
key: composer2-php:${{ matrix.php }}-${{ github.sha }}
restore-keys: composer2-php:${{ matrix.php }}-
- run: mkdir -p /home/runner/{.composer/cache,.config/composer}
if: steps.cache-composer.outputs.cache-hit != 'true'
- name: Composer v2
run: sudo composer self-update --2
- name: Composer Github Auth
run: composer config -g github-oauth.github.com ${{ github.token }}
- run: make install
- run: make test.composer
- run: make test.phpcs
- run: make test.phpunit
- run: make test.phpstan
- run: make test.phpmd
- run: make test.phpspec
- run: make test.yaml
- run: make test.twig
- run: make test.schema
- run: make test.container