Skip to content

chore(deps): bump golang.org/x/sys from 0.28.0 to 0.29.0 in /src in the minor-patch group #178

chore(deps): bump golang.org/x/sys from 0.28.0 to 0.29.0 in /src in the minor-patch group

chore(deps): bump golang.org/x/sys from 0.28.0 to 0.29.0 in /src in the minor-patch group #178

Workflow file for this run

on:
pull_request:
paths:
- 'src/**'
name: Validate Code
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ github.workspace }}/src
steps:
- name: Install Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
with:
go-version: 1.22.4
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Golang CI
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8
with:
working-directory: src
- name: Fieldalignment
run: |
go install golang.org/x/tools/go/analysis/passes/fieldalignment/cmd/fieldalignment@latest
fieldalignment "./..."
- name: Unit Tests
run: go test -v ./...