Merge branch 'main' into rapha/add-more-tests #536
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
on: push | |
jobs: | |
buf: | |
runs-on: ubuntu-latest | |
steps: | |
# Run `git checkout` | |
- uses: actions/checkout@v3 | |
# Install `buf` | |
- uses: bufbuild/buf-setup-action@v1 | |
with: | |
github_token: ${{ github.token }} | |
# Lint Protobuf files | |
- uses: bufbuild/buf-lint-action@v1 | |
with: | |
buf_token: ${{ secrets.BUF_TOKEN }} | |
# TODO(@john): Figure out why linting passes locally but not here. | |
# golangci: | |
# runs-on: ubuntu-latest | |
# steps: | |
# # Run `git checkout` | |
# - uses: actions/checkout@v3 | |
# # Install `go` | |
# - uses: actions/setup-go@v3 | |
# # Lint Go files | |
# - uses: golangci/golangci-lint-action@v3 | |
# with: | |
# args: --timeout=10m |