File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
workflow_dispatch :
6
6
schedule :
7
- - cron : ' 0 0 * * *'
7
+ - cron : ' 0 5 * * *'
8
8
9
9
jobs :
10
10
test :
36
36
run : vendor/bin/phpunit --coverage-clover=coverage.xml
37
37
38
38
- name : Upload coverage to Codecov
39
- uses : codecov/codecov-action@v1
39
+ uses : codecov/codecov-action@v2
40
40
with :
41
41
token : ${{ secrets.CODECOV_TOKEN }}
42
- file : ./coverage.xml
43
- fail_ci_if_error : true
42
+ files : ./coverage.xml
43
+ fail_ci_if_error : false
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ class PostgresError
131
131
const TOO_MANY_JSON_ARRAY_ELEMENTS = '2203D ' ;
132
132
const TOO_MANY_JSON_OBJECT_MEMBERS = '2203E ' ;
133
133
const SQL_JSON_SCALAR_REQUIRED = '2203F ' ;
134
+ const SQL_JSON_ITEM_CANNOT_BE_CAST_TO_TARGET_TYPE = '2203G ' ;
134
135
135
136
// Class 23 - Integrity Constraint Violation
136
137
const INTEGRITY_CONSTRAINT_VIOLATION = '23000 ' ;
You can’t perform that action at this time.
0 commit comments