Skip to content

Bump github.com/bradleyfalzon/ghinstallation/v2 from 2.1.0 to 2.7.0 #52

Bump github.com/bradleyfalzon/ghinstallation/v2 from 2.1.0 to 2.7.0

Bump github.com/bradleyfalzon/ghinstallation/v2 from 2.1.0 to 2.7.0 #52

Workflow file for this run

on: [push, pull_request]
name: Build
jobs:
test:
strategy:
matrix:
go-version: [1.18.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Go modules cache
uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: |
go mod tidy
go vet ./...
CGO_ENABLED=0 go build
./gha-cli -h