Update module github.com/google/go-github/v49 to v61 - autoclosed #139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- 'docs/**' | |
- '**/README.md' | |
tags-ignore: | |
- '*.*' | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.19 | |
id: go | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
go get -d -v | |
go build -v . |