Format yaml files using github.com/google/yamlfmt/cmd/yamlfmt

This commit is contained in:
Juan Calderon-Perez
2025-11-20 22:27:05 -05:00
parent 500e9ca7fb
commit d5882b84e2
39 changed files with 847 additions and 951 deletions
+27 -28
View File
@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'mysql/**'
pull_request:
paths:
- 'mysql/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'mysql/**'
pull_request:
paths:
- 'mysql/**'
workflow_dispatch:
name: "Tests MySQL"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MYSQL_IMAGE: docker.io/mysql:9
run: cd ./mysql && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MYSQL_IMAGE: docker.io/mysql:9
run: cd ./mysql && go test ./... -v -race