Skip to content

Merge pull request #77 from mctofu/dependabot/go_modules/golang.org/x… #139

Merge pull request #77 from mctofu/dependabot/go_modules/golang.org/x…

Merge pull request #77 from mctofu/dependabot/go_modules/golang.org/x… #139

Workflow file for this run

name: Go build and test
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: stable
check-latest: true
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover ./...