MySQL/.gitea/workflows/mysql.yml

23 lines
451 B
YAML
Raw Normal View History

2024-01-29 14:53:15 +08:00
name: test mysql8
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: test mysql8
runs-on: ubuntu-latest
steps:
- run: apt-get install -y default-mysql-client
- run: mysql -h mysql8 -u root -e '\q'
services:
mysql8:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: test_db
ports:
- 3306:3306