diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bd4b047..6e2cc90 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,11 @@ jobs: uses: actions/checkout@v2 # use mysql in VM https://github.com/actions/virtual-environments/blob/master/images/linux/Ubuntu1804-README.md + # https://github.com/actions/virtual-environments/issues/576 - name: Try connect to MySQL and init datebase run: | + sudo systemctl enable mysql.service + sudo systemctl start mysql.service mysql -hlocalhost -uroot -proot < ./sql/schema.sql - name: Get dependencies