Always skip style check for dev:check ci (#12654)

* Always skip style check for dev:check ci

* fix names and mysql 8 was barely being tested

* fix sql mode test

* safer vendor check

* flubbed the regex

* ...

* Mysql 8 fixes

Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>
This commit is contained in:
Tony Murray
2021-03-28 16:55:41 -05:00
committed by GitHub
parent c0e144295b
commit 1695f86af8
4 changed files with 17 additions and 13 deletions

View File

@@ -28,29 +28,26 @@ jobs:
-
php-version: 8.0
name: Unit
skip-style-check: 1
skip-web-check: 1
database: mariadb:10.5
-
php-version: 8.0
name: Style and Web
name: Web
skip-unit-check: 1
database: mysql:5.7
-
php-version: 7.4
name: Unit
skip-style-check: 1
skip-web-check: 1
database: mysql:5.7
-
php-version: 7.3
name: Unit
skip-style-check: 1
skip-web-check: 1
database: mysql:5.7
database: mysql:8.0
-
php-version: 7.3
name: Style and Web
name: Web
skip-unit-check: 1
database: mysql:8.0
services:
@@ -187,7 +184,6 @@ jobs:
run: |
php lnms dev:check ci
env:
SKIP_STYLE_CHECK: ${{ matrix.skip-style-check }}
SKIP_UNIT_CHECK: ${{ matrix.skip-unit-check }}
SKIP_WEB_CHECK: ${{ matrix.skip-web-check }}
-