Skip to content

deps: Use ghinstallation/v2 #108

deps: Use ghinstallation/v2

deps: Use ghinstallation/v2 #108

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20.x
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4
with:
go-version: '1.20.6'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover ./...