Skip to content

replace bou.ke/monkey with bytedance/mockey #729

replace bou.ke/monkey with bytedance/mockey

replace bou.ke/monkey with bytedance/mockey #729

Workflow file for this run

name: Code Lint
on:
pull_request:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/code.yml"
jobs:
lint:
name: Code Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Go Environment
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
# https://github.com/reviewdog/reviewdog/issues/1158
# Permissions need to match container user
- name: "Give Permissions"
run: |
sudo chown -R root $GITHUB_WORKSPACE
- name: Spelling Check
uses: reviewdog/action-misspell@v1.23.0
- name: Revive Action
uses: morphy2k/revive-action@v2
- name: "Restore Permissions"
run: |
sudo chown -R $(id -u) $GITHUB_WORKSPACE
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)