Skip to content

testing debuged form #4

testing debuged form

testing debuged form #4

Workflow file for this run

name: Go CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.25.5'
cache: false
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...