Skip to content

Bump actions/setup-go from 5 to 6 in the all group #93

Bump actions/setup-go from 5 to 6 in the all group

Bump actions/setup-go from 5 to 6 in the all group #93

Workflow file for this run

# This workflow will build and test a Go application
name: Build and Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
check-latest: true
cache: true
- name: Check format
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
exit 1
fi
- name: Build
run: go build
# - name: Test
# run: go test -v ./...