Skip to content

fix(deps): update module github.com/gogf/gf/contrib/drivers/mysql/v2 to v2.7.4 #231

fix(deps): update module github.com/gogf/gf/contrib/drivers/mysql/v2 to v2.7.4

fix(deps): update module github.com/gogf/gf/contrib/drivers/mysql/v2 to v2.7.4 #231

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
name: Go
jobs:
test:
name: Test
strategy:
matrix:
go-version: [1.23.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Cache Go module
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: make dep
- name: Test
run: make test
- name: Test Coverage
run: make test-coverage
- name: Post coverage data to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
- name: Clean Make
run: make clean
lint:
name: Lint
strategy:
matrix:
go-version: [1.23.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: false
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Lint with golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
build:
name: Build
strategy:
matrix:
go-version: [1.23.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Cache Go module
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: make get-gf && make dep
- name: Build
run: make build