Browse Source

Merge branch 'master' into 4.next

Corey Taylor 5 years ago
parent
commit
0fdb80f415
4 changed files with 6 additions and 7 deletions
  1. 0 2
      .coveralls.yml
  2. 1 4
      .gitattributes
  3. 4 0
      .github/workflows/ci.yml
  4. 1 1
      src/Database/Type/FloatType.php

+ 0 - 2
.coveralls.yml

@@ -1,2 +0,0 @@
-coverage_clover: clover.xml
-json_path: coveralls-upload.json

+ 1 - 4
.gitattributes

@@ -30,18 +30,15 @@ contrib export-ignore
 tests/test_app export-ignore
 tests/TestCase export-ignore
 
-.appveyor.yml export-ignore
-.coveralls export-ignore
 .editorconfig export-ignore
 .gitattributes export-ignore
 .gitignore export-ignore
 .mailmap export-ignore
 .stickler.yml export-ignore
-.travis.yml export-ignore
+Makefile export-ignore
 phpcs.xml export-ignore
 phpstan.neon export-ignore
 phpstan-baseline.neon export-ignore
 phpunit.xml.dist export-ignore
 psalm.xml export-ignore
 psalm-baseline.xml export-ignore
-Makefile export-ignore

+ 4 - 0
.github/workflows/ci.yml

@@ -8,6 +8,10 @@ on:
   pull_request:
     branches:
       - '*'
+  schedule:
+    - cron: "0 0 * * *"
+      branches:
+        - master
 
 jobs:
   testsuite:

+ 1 - 1
src/Database/Type/FloatType.php

@@ -93,7 +93,7 @@ class FloatType extends BaseType implements BatchCastingInterface
     }
 
     /**
-     * Get the correct PDO binding type for integer data.
+     * Get the correct PDO binding type for float data.
      *
      * @param mixed $value The value being bound.
      * @param \Cake\Database\DriverInterface $driver The driver.