Skip to content

fix(deps): update module github.com/cli/cli/v2 to v2.62.0 #193

fix(deps): update module github.com/cli/cli/v2 to v2.62.0

fix(deps): update module github.com/cli/cli/v2 to v2.62.0 #193

Workflow file for this run

name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- run: go mod download
- run: go build
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- run: go mod download
- name: test
shell: 'script -q -e -c "stty cols 200 rows 100; bash {0}"'
run: |
go test -v
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}