Skip to content

Commit

Permalink
Revert to MYSQL variables, and re-add setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-riggs committed Aug 21, 2024
1 parent f935494 commit 38417d2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ jobs:
mariadb:
image: mariadb:10.6
env:
MARIADB_USER: test
MARIADB_PASSWORD: test
MARIADB_DATABASE: ispybtest
MARIADB_ROOT_PASSWORD: mariadb_root_pwd
MYSQL_DATABASE: ispybtest
MYSQL_ROOT_PASSWORD: mariadb_root_pwd
ports:
- 3306:3306
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
Expand All @@ -41,6 +39,12 @@ jobs:
name: package-distributions
path: dist/

- uses: shogo82148/actions-setup-mysql@v1
with:
distribution: 'mariadb'
mysql-version: '10.8'
auto-start: false

- name: Set up test database
run: |
set -eu
Expand Down

0 comments on commit 38417d2

Please sign in to comment.