-
-
Notifications
You must be signed in to change notification settings - Fork 3
63 lines (50 loc) · 1.76 KB
/
linters.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
name: Linters
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
NO_DOCKER: true
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-22.04]
php-versions: ['8.2', '8.3']
name: PHP ${{ matrix.php-versions }} CI on ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
extensions: intl, gettext, pcntl, gd, pdo, pdo_pgsql
ini-values: browscap=${{ github.workspace }}/docker/lite_php_browscap.ini
- name: Setup locales
run: |
sudo apt-get install locales
sudo locale-gen fr_FR.UTF-8 en_GB.UTF-8
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Cache node dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install dependencies
run: make install
- name: Run the linters
run: make lint