Skip to content

Bump github.com/bytedance/sonic from 1.10.2 to 1.11.6 #133

Bump github.com/bytedance/sonic from 1.10.2 to 1.11.6

Bump github.com/bytedance/sonic from 1.10.2 to 1.11.6 #133

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
go_version_file: go.mod
fail_on_error: true
filter_mode: nofilter
golangci_lint_flags: --timeout=10m
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Mod Download
run: go mod download
- name: Build
run: go build
test:
name: Test
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run Test
run: go test ./... -v