forked from thedevdojo/voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.18 KB
/
coverage.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
name: Coverage
on:
push:
branches:
- '1.*'
pull_request:
types:
- synchronize
- opened
- edited
- reopened
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
# Configure PHP
- name: Select PHP version
uses: shivammathur/setup-php@master
with:
php-version: '7.3'
extensions: mbstring, pdo_sqlite, fileinfo, gd
coverage: pcov
# Configure NPM
- uses: actions/setup-node@v1
with:
node-version: '14.x'
# Install PHP dependencies
- name: Install Composer dependencies
run: composer require "illuminate/support:7.*" --no-ansi
# Install NPM dependencies
- name: Install Dependencies
run: npm install
# Build static assets
- name: Compile Assets
run: npm run prod
# Run phpunit tests to generate coverage report
- name: Run tests for coverage
run: php -d pcov.enabled=1 ./vendor/bin/phpunit --coverage-clover=coverage.xml
# Upload coverage report to codecov.io
- name: Upload coverage
run: bash <(curl -s https://codecov.io/bash)