Skip to content

chore(deps): update dependency go to v1.23.0 #523

chore(deps): update dependency go to v1.23.0

chore(deps): update dependency go to v1.23.0 #523

Workflow file for this run

name: Go Test
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
test:
runs-on: ubuntu-latest
name: go build
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
cache: true
go-version-file: 'go.mod'
- run: go build .
- run: go test -short ./... -v -race -coverprofile=coverage.xml -covermode=atomic
- uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
cache: true
go-version-file: 'go.mod'
cache-dependency-path: go.sum
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
only-new-issues: true
args: --timeout=10m