Skip to content

fix(deps): update module github.com/google/go-github/v87 to v88 #710

fix(deps): update module github.com/google/go-github/v87 to v88

fix(deps): update module github.com/google/go-github/v87 to v88 #710

Workflow file for this run

on: [ push, pull_request ]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.26.x]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Test
run: |
go env
go test ./... -v -race -coverprofile=coverage.txt -covermode=atomic
bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}