panic: on error code 4294966892 (-404), reauthenticate, revamp tl par… #243
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Go | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
goLint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
stable: 'false' | |
go-version: '1.17.6' | |
- name: Lint | |
run: | | |
gofmt -l -s -w . | |
cd internal/cmd/tlgen && go run . | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'RoseLoverX: auto Linting' | |
commit_options: '--no-verify' | |
repository: . | |
commit_user_name: AmarnathCjd | |
commit_user_email: [email protected] | |
commit_author: AmarnathCjd <[email protected]> |