mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
f9b353753c
* update x/community docs for v0.21 release * auto-approve proposal submission in seed script * update to v2 of go linting CI job
17 lines
418 B
YAML
17 lines
418 B
YAML
name: Lint Checks
|
|
on:
|
|
workflow_call:
|
|
# run per commit ci checks against this commit
|
|
jobs:
|
|
proto-lint:
|
|
uses: ./.github/workflows/proto.yml
|
|
golangci-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: golangci-lint
|
|
uses: reviewdog/action-golangci-lint@v2
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
reporter: github-pr-review
|