-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (60 loc) · 1.62 KB
/
ci.yml
File metadata and controls
73 lines (60 loc) · 1.62 KB
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
---
name: CI
on:
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- '.github/*.md'
push:
tags:
- '*'
branches:
- '*'
paths-ignore:
- '**.md'
- 'docs/**'
- '.github/*.md'
# Cancel previous runs on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint_and_test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: mbstring, intl, curl, dom, json, pdo, mysql, xml, zip
tools: composer:v2
coverage: xdebug
# === CACHING ===
- name: Get Composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer dependencies
uses: actions/cache@v5
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: composer-${{ hashFiles('composer.json') }}
restore-keys: composer-
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Install gettext
run: sudo apt-get install -y gettext
# === LINT ===
- name: Check untranslated strings
run: make check-untranslated
- name: Generate .mo file
run: make compile-mo
- name: Run code linting
run: make lint
# === TESTS ===
- name: Run unit tests with coverage
run: make test-coverage