Skip to content

Commit 6553dc2

Browse files
authored
Include Lavarel 6 in CI jobs (#12)
1 parent 2ea2b3a commit 6553dc2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
php: [7.3, 7.4, 8.0]
12-
laravel: [8]
12+
laravel: [6, 8]
1313

1414
steps:
1515
- name: Checkout code
@@ -23,6 +23,14 @@ jobs:
2323
extensions: ctype, iconv, intl, json, mbstring, pdo, pdo_sqlite
2424
coverage: none
2525

26+
- name: Checkout Laravel 6 Sample
27+
if: matrix.laravel == 6
28+
uses: actions/checkout@v2
29+
with:
30+
repository: codeception/laravel-module-tests
31+
path: framework-tests
32+
ref: 6.x
33+
2634
- name: Checkout Laravel 8 Sample
2735
if: matrix.laravel == 8
2836
uses: actions/checkout@v2

0 commit comments

Comments
 (0)