Skip to content

fix(main): update list parsing #193

fix(main): update list parsing

fix(main): update list parsing #193

Workflow file for this run

name: Shef Go Build Verify
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
check-latest: true
cache: true
- name: Install dependencies
run: |
go mod download
go mod tidy
- name: Build
run: go build -v ./...
- name: Verify formatting
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "The following files are not formatted correctly:"
gofmt -l .
exit 1
fi
- name: Run go vet
run: go vet ./...