Skip to content

refactor(executor): Rename mysql executor to sql executor #110

refactor(executor): Rename mysql executor to sql executor

refactor(executor): Rename mysql executor to sql executor #110

Workflow file for this run

name: for pull request
on:
pull_request:
types: [opened, reopened]
push:
jobs:
build:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: my_db
MYSQL_ROOT_PASSWORD: 123456
ports:
- 3306:3306
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...