chore: remove todo #551
Workflow file for this run
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 | |
on: push | |
jobs: | |
buf: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
# Install `buf` | |
- name: Install `buf` | |
uses: bufbuild/buf-setup-action@v1 | |
with: | |
github_token: ${{ github.token }} | |
# Lint Protobuf files | |
- name: Lint Protobuf files | |
uses: bufbuild/buf-lint-action@v1 | |
with: | |
buf_token: ${{ secrets.BUF_TOKEN }} | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
# Setup Golang | |
- name: 🐿 Setup Golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
# Lint go files with golangci-lint | |
- name: Lint go files with golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --timeout=10m |