Add CI step to create lighthouse database

This commit is contained in:
jvyden 2021-10-18 22:53:47 -04:00
commit fbeaa303bf
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -51,6 +51,10 @@ jobs:
with:
mysql-version: '8.0'
root-password: ${{ env.DB_PASSWORD }}
- name: Create Lighthouse Database
if: ${{ matrix.os.database }}
run: mysql -uroot -p${{ env.DB_PASSWORD }} -h127.0.0.1 -e "CREATE DATABASE lighthouse;";
- name: Test
continue-on-error: true