Skip to content

github action go 1.25.7 #1

github action go 1.25.7

github action go 1.25.7 #1

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.25.7zz'
- name: Install dependencies
run: go get .
- name: Test with the Go CLI
run: go test -v ./...