Skip to content

mysql config

mysql config #37

Workflow file for this run

name: Go package
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: test
ports:
- 3306/tcp
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Build
run: make build
- name: Lint
run: make lint
- name: Unit test
run: make test
- name: Start local MySQL
run: sudo systemctl start mysql
- name: MySQL Test
run: |
export PATH="$PATH:bin"
script/ci-github.sh