Skip to content

fix(deps): update github.com/shurcool/githubv4 digest to 18a1ae0 #110

fix(deps): update github.com/shurcool/githubv4 digest to 18a1ae0

fix(deps): update github.com/shurcool/githubv4 digest to 18a1ae0 #110

Workflow file for this run

name: Build and test code
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.19.x
- name: Check out code
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Verify
run: go mod verify
- name: Test
run: go test -v ./...