Skip to content

Bump golang.org/x/sys from 0.28.0 to 0.29.0 (#278) #557

Bump golang.org/x/sys from 0.28.0 to 0.29.0 (#278)

Bump golang.org/x/sys from 0.28.0 to 0.29.0 (#278) #557

Workflow file for this run

name: Validate
on:
workflow_dispatch:
push:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable # https://golang.org/dl/
- name: Checkout
uses: actions/checkout@v4
- name: Hadolint
uses: hadolint/hadolint-action@v3.1.0
with:
ignore: DL3029 # build amd64 image
- name: Go Mod Tidy
run: test -z $(go mod tidy)
- name: Lint
uses: golangci/golangci-lint-action@v6.1.1
- name: Test
run: make test