Skip to content

Commit

Permalink
checkup: add mysql integration test drone service
Browse files Browse the repository at this point in the history
  • Loading branch information
titpetric committed Jun 26, 2020
1 parent 80fa4cc commit 939ad0c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ kind: pipeline
name: checkup

steps:
- name: test-mysql
image: golang:1.14
pull: always
commands:
- make test-mysql
- make build-mysql

- name: test-postgres
image: golang:1.14
pull: always
Expand All @@ -25,4 +32,13 @@ services:
environment:
POSTGRES_PASSWORD: test
POSTGRES_USER: test
POSTGRES_DB: test
POSTGRES_DB: test

- name: mysql-test-db
pull: always
image: percona/percona-server:8.0.17
environment:
MYSQL_RANDOM_ROOT_PASSWORD: true
MYSQL_USER: test
MYSQL_PASSWORD: test
MYSQL_DATABASE: test

0 comments on commit 939ad0c

Please sign in to comment.