File tree Expand file tree Collapse file tree 3 files changed +32
-9
lines changed Expand file tree Collapse file tree 3 files changed +32
-9
lines changed Original file line number Diff line number Diff line change 13
13
14
14
/scripts / export-ignore
15
15
/tests / export-ignore
16
+
17
+ # Ensure the correct line endings are used in tests on Windows
18
+ * text =auto eol =lf
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: tests
3
3
on :
4
4
# Run action on every push
5
5
push :
6
-
6
+
7
7
# Run action at midnight to test against any updated dependencies
8
8
schedule :
9
9
- cron : ' 0 0 * * *'
@@ -15,17 +15,17 @@ jobs:
15
15
php : [7.4, 7.3, 7.2]
16
16
laravel : [8.*, 7.*, 6.*]
17
17
os : [ubuntu-latest, windows-latest]
18
-
18
+
19
19
# Unsupported combinations
20
20
exclude :
21
21
- laravel : 8.*
22
22
php : 7.2
23
-
23
+
24
24
# Continue running through matrix even if one combination fails
25
25
fail-fast : false
26
26
27
27
runs-on : ${{ matrix.os }}
28
-
28
+
29
29
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
30
30
31
31
steps :
@@ -42,14 +42,12 @@ jobs:
42
42
run : |
43
43
# Install Laravel version per matrix
44
44
composer require --dev "laravel/framework:${{ matrix.laravel }}" --no-interaction
45
-
45
+
46
46
composer install --no-interaction
47
47
48
48
- name : Execute PHPUnit tests
49
- # Update snapshots each time to deal with platform differences
50
- # @see https://github.com/spatie/phpunit-snapshot-assertions/issues/105
51
- run : vendor/bin/phpunit -d --update-snapshots --coverage-clover build/logs/clover.xml
52
-
49
+ run : vendor/bin/phpunit --coverage-clover build/logs/clover.xml
50
+
53
51
- name : Report coverage to Codecov
54
52
uses : codecov/codecov-action@v1
55
53
with :
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" ?>
2
+ <nav class =" container mx-auto" >
3
+ <ol class =" p-4 rounded flex flex-wrap bg-gray-300 text-sm text-gray-800" >
4
+ <li >
5
+ <a href =" http://localhost" class =" text-blue-600 hover:text-blue-900 hover:underline focus:text-blue-900 focus:underline" >
6
+ Home
7
+ </a >
8
+ </li >
9
+ <li class =" text-gray-500 px-2" >
10
+ /
11
+ </li >
12
+ <li >
13
+ Blog
14
+ </li >
15
+ <li class =" text-gray-500 px-2" >
16
+ /
17
+ </li >
18
+ <li >
19
+ Sample Category
20
+ </li >
21
+ </ol >
22
+ </nav >
You can’t perform that action at this time.
0 commit comments