Skip to content

build(deps): bump actions/checkout from 6 to 7 #229

build(deps): bump actions/checkout from 6 to 7

build(deps): bump actions/checkout from 6 to 7 #229

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go mod tidy && go build -v ./...
- name: Test
run: go mod tidy && go test -v ./...