Skip to content

[breaking changes] Upgrade go-github and go-github-client #113

[breaking changes] Upgrade go-github and go-github-client

[breaking changes] Upgrade go-github and go-github-client #113

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
job-test:
name: Test
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
pull-requests: write
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run lint
uses: reviewdog/action-golangci-lint@v2
with:
fail_on_error: true
go_version_file: go.mod
golangci_lint_flags: --timeout=5m
- name: Test
run: make ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run octocov
uses: k1LoW/octocov-action@v1