forked from thedevdojo/voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.27 KB
/
test.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
name: Tests
on:
push:
branches:
- '1.*'
pull_request:
types:
- synchronize
- opened
- edited
- reopened
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [7.2, 7.3, 7.4]
laravel: ['5.5.*', '5.8.*', '6.*']
name: 'PHP ${{ matrix.php }} / ${{ matrix.laravel }}'
steps:
- uses: actions/checkout@master
# Configure PHP
- name: Select PHP version
uses: shivammathur/setup-php@master
with:
php-version: '${{ matrix.php }}'
extensions: mbstring, pdo_sqlite, fileinfo, gd
coverage: none
# Configure NPM
- uses: actions/setup-node@v1
with:
node-version: '10.x'
# Install PHP dependencies
- name: Install Composer dependencies
run: composer require "illuminate/support:${{ matrix.laravel }}"
# Display installed laravel version
- name: Show laravel version
run: composer show laravel/framework
# Install NPM dependencies
- name: Install Dependencies
run: npm install
# Build static assets
- name: Compile Assets
run: npm run prod
# Run phpunit tests
- name: Run tests
run: ./vendor/bin/phpunit