Skip to content

Commit 6142f4e

Browse files
committed
2 parents 7ee1452 + 79cd328 commit 6142f4e

File tree

2 files changed

+40
-11
lines changed

2 files changed

+40
-11
lines changed

.github/workflows/laravel.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You may use in blade:
1717

1818
And 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

2222
But 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/>

0 commit comments

Comments
 (0)