Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Bump actions/checkout from 4 to 6 #105

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #105

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...