Skip to content

fix(deps): update shared components packages (major) #4593

fix(deps): update shared components packages (major)

fix(deps): update shared components packages (major) #4593

Workflow file for this run

name: Go Build
on:
push:
branches: [main]
paths:
- '**.go'
- '**.toml'
- 'go.mod'
pull_request:
branches: [main]
paths:
- '**.go'
- '**.toml'
- 'go.mod'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.18.x
- name: Checkout code
uses: actions/checkout@v4
- name: golangci-lint
# v3
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5
with:
version: v1.48.0
# skip-go-installation: true
# skip-pkg-cache: true
# skip-build-cache: true
args: --timeout 3m0s --verbose
- name: Check documentation
run: make check-docs
- name: Check i18n
run: make lint-lang
- name: Check vendoring
run: make check-vendor
- name: Build
run: make binary
- name: Unit tests
run: make test