Skip to content

Bump github.com/0xSplits/roghfs from 0.3.0 to 0.3.1 #344

Bump github.com/0xSplits/roghfs from 0.3.0 to 0.3.1

Bump github.com/0xSplits/roghfs from 0.3.0 to 0.3.1 #344

Workflow file for this run

#
# Do not edit. This file was generated via the "workflow" command line tool.
# More information about the tool can be found at github.com/xh3b4sd/workflow.
#
# workflow create golang
#
name: "Go Build"
on: "push"
permissions:
contents: read
jobs:
go-build:
runs-on: "ubuntu-latest"
steps:
- name: "Setup Git Project"
uses: "actions/checkout@v5"
- name: "Setup Go Env"
uses: "actions/setup-go@v6"
with:
cache: true
go-version: "1.25.1"
- name: "Check Go Dependencies"
run: |
go mod tidy
git diff --exit-code
- name: "Check Go Linters"
uses: "golangci/golangci-lint-action@v9"
with:
version: "latest"
- name: "Check Go Formatting"
run: |
test -z $(gofmt -l -s .)
- name: "Check Go Tests"
run: |
go test ./... -race