-
Notifications
You must be signed in to change notification settings - Fork 63
50 lines (37 loc) · 1.19 KB
/
continuous-integration.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
name: "Continuous Integration"
on: ["push", "pull_request"]
env:
doctrine_website_github_http_token: "${{ github.token }}"
PHP_VERSION: "8.3"
doctrine_website_algolia_admin_api_key: "no-key-needed"
jobs:
tests:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- name: "Setup PHP Action"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ env.PHP_VERSION }}"
coverage: "none"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
with:
composer-options: "--prefer-dist --no-progress --no-suggest"
- name: "Installation of node"
uses: "actions/setup-node@v4"
with:
node-version: '20.5.1'
- name: "yarn install"
run: "yarn install"
- name: "Setup PHP Action"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ env.PHP_VERSION }}"
coverage: "pcov"
- name: "Build website"
run: "./bin/console --env=test build-all"
- name: "Run PHP tests with coverage"
run: "./vendor/bin/phpunit --coverage-clover clover.xml"
- name: "Deliver code coverage"
run: "bash <(curl -s https://codecov.io/bash)"