Testing github action for mysql matrix test
This commit is contained in:
parent
aa602fe800
commit
59f2841b18
1 changed files with 2 additions and 1 deletions
3
.github/workflows/pythonpackage.yml
vendored
3
.github/workflows/pythonpackage.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.7, 3.8]
|
python-version: [3.7, 3.8]
|
||||||
# TODO: mysql disabled, not able to connect to it so far
|
# TODO: mysql disabled, not able to connect to it so far
|
||||||
TESTING_DB: ['sqlite3', 'postgresql'] # , 'mysql']
|
TESTING_DB: ['sqlite3', 'postgresql', 'mysql']
|
||||||
fail-fast: False
|
fail-fast: False
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -36,6 +36,7 @@ jobs:
|
||||||
uses: mirromutth/mysql-action@v1.1
|
uses: mirromutth/mysql-action@v1.1
|
||||||
if: ${{ matrix.TESTING_DB == 'mysql'}}
|
if: ${{ matrix.TESTING_DB == 'mysql'}}
|
||||||
with:
|
with:
|
||||||
|
host port: 3306
|
||||||
character set server: 'utf8mb4'
|
character set server: 'utf8mb4'
|
||||||
collation server: 'utf8mb4_unicode_ci'
|
collation server: 'utf8mb4_unicode_ci'
|
||||||
mysql database: 'evennia'
|
mysql database: 'evennia'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue