File tree Expand file tree Collapse file tree 2 files changed +40
-11
lines changed
Expand file tree Collapse file tree 2 files changed +40
-11
lines changed Original file line number Diff line number Diff line change 1+ name : Laravel
2+
3+ on :
4+ push :
5+ branches : [ 2.x, master ]
6+ pull_request :
7+ branches : [ 2.x, master ]
8+
9+ jobs :
10+ laravel-tests :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
16+ with :
17+ php-version : ' 8.0'
18+ - uses : actions/checkout@v2
19+ - name : Copy .env
20+ run : php -r "file_exists('.env') || copy('.env.example', '.env');"
21+ - name : Install Dependencies
22+ run : composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
23+ - name : Create Database
24+ run : |
25+ mkdir -p database
26+ touch database/database.sqlite
27+ - name : Execute tests (Unit and Feature tests) via PHPUnit
28+ env :
29+ DB_CONNECTION : sqlite
30+ DB_DATABASE : database/database.sqlite
31+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ You may use in blade:
1717
1818And it previews with [ gray-circled] ( #gray-circled ) theme :
1919
20- <img src =" /screens/gray-circled.png " alt =" gray-circled theme " width =" " />
20+ <img src =" /screens/gray-circled.png " alt =" gray-circled- theme " width =" 60% " />
2121
2222But you can ** change** ** themes** and more ** settings** read ** [ Usage] ( #usage ) ** .
2323
@@ -84,40 +84,38 @@ for example:
8484## Themes
8585
8686- ### pagination
87-
87+
8888 - ### light
8989
90- <img src =" /screens/light.png " alt =" light theme " />
90+ <img src =" /screens/light.png " alt =" light- theme " width = " 60% " />
9191
9292
9393 - ### gray
9494
95- ![ gray-theme ] ( screens/gray.png )
96- ![ gray-theme ] ( / screens/gray1.png)
95+ < img src = " screens/gray.png " alt = " gray-theme " width = " 60% " />
96+ < img src = " screens/gray1.png " alt = " gray-theme " width = " 60% " />
9797
9898
9999 - ### light-circled
100100
101-
102- <img src =" /screens/light-circled.png " alt =" light-circled theme " />
101+ <img src =" /screens/light-circled.png " alt =" light-circled-theme " width =" 60% " />
103102
104103
105104 - ### gray-circled
106105
107-
108- <img src =" /screens/gray-circled.png " alt =" gray-circled theme " />
106+ <img src =" /screens/gray-circled.png " alt =" gray-circled-theme " width =" 60% " />
109107
110108
111109 - ### light-underlined
112110
113111
114- <img src =" /screens/light-underlined.png " alt =" light-underlined theme " />
112+ <img src =" /screens/light-underlined.png " alt =" light-underlined- theme " width = " 60% " />
115113
116114
117115 - ### red-pill
118116
119117
120- <img src =" /screens/red-pill.png " alt =" red-pill theme " />
118+ <img src =" /screens/red-pill.png " alt =" red-pill- theme " width = " 60% " />
121119
122120
123121<br />
You can’t perform that action at this time.
0 commit comments