Skip to content

Refactor: Use testing.T in UserTestFile (#3995) #71

Refactor: Use testing.T in UserTestFile (#3995)

Refactor: Use testing.T in UserTestFile (#3995) #71

Workflow file for this run

name: Build docs and shell completions
on:
push:
branches:
- master
paths:
- 'cmd/*.go'
jobs:
build_cli:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install
run: |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
go install
- name: Build
run: |
make cli
- uses: stefanzweifel/git-auto-commit-action@v4.16.0
with:
commit_message: Build CLI docs and shell completions
branch: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}