FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cache/.github/workflows/Build.yml at develop · userfrosting/cache · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Apr 28, 2024. It is now read-only.
userfrosting
/
cache
Public archive
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cache
/
.github
/
workflows
/
Build.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
48 lines (43 loc) · 1.32 KB
Breadcrumbs
cache
/
.github
/
workflows
/
Build.yml
Copy path
File metadata and controls
48 lines (43 loc) · 1.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
Build
on
:
push
:
branches
:
[master, develop]
pull_request
:
branches
:
[master, develop]
schedule
:
-
cron
:
"
0 0 * * 5
"
jobs
:
PHPUnit
:
strategy
:
fail-fast
:
false
matrix
:
php_versions
:
['7.1', '7.2', '7.3', '7.4']
laravel
:
['5.8.*']
name
:
PHPUnit Tests - ${{ matrix.php_versions }} - ${{ matrix.laravel }}
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Setup PHP, with composer and extensions
uses
:
shivammathur/setup-php@v2
with
:
php-version
:
${{ matrix.php_versions }}
extensions
:
mbstring, dom, fileinfo, gd, memcached, redis
coverage
:
xdebug
tools
:
pecl
-
name
:
Set Laravel version
run
:
composer require "illuminate/redis:${{ matrix.laravel }}" --no-update
-
name
:
Install Dependencies
run
:
composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
-
name
:
Setup Redis-server
uses
:
supercharge/redis-github-action@1.1.0
with
:
redis-version
:
6
-
name
:
Setup Memcached
uses
:
niden/actions-memcached@v7
-
name
:
Execute tests via PHPUnit
run
:
vendor/bin/phpunit
-
name
:
Upload coverage to Codecov
uses
:
codecov/codecov-action@v1
with
:
file
:
./_meta/coverage.xml
fail_ci_if_error
:
true
Back
|
FazBrowse Home
|
New Git URL