Skip to content

Bump golang from 1.25-alpine to 1.26-alpine #99

Bump golang from 1.25-alpine to 1.26-alpine

Bump golang from 1.25-alpine to 1.26-alpine #99

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@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- 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 ./...