Skip to content

chore(deps): update mysql docker tag to v8.4.1 #224

chore(deps): update mysql docker tag to v8.4.1

chore(deps): update mysql docker tag to v8.4.1 #224

Workflow file for this run

name: ci
on: push
jobs:
app-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true
cache-dependency-path: ./go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51
working-directory: ./
skip-pkg-cache: true
- name: Build Go binary
run: |-
VERSION=${{ github.sha }}
make build
- name: Run Go Test
run: |-
make test