feat: fix plugin manifest #120
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
# This workflow builds the sonrd binary for amd64 and arm64 on Darwin and Linux. | |
# | |
# This workflow runs: | |
# - on pushes to main | |
# - on every pull requests | |
# - when manually triggered | |
# | |
# Caching strategy | |
# This code will store the Go modules cache based on the hash of your go.sum file, | |
# ensuring that the cache will be invalidated when your dependencies change. | |
# The cache will be stored on a per-branch basis, which should prevent cache pollution issues between different branches. | |
name: Test sonrd | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- "master" | |
- "**" | |
workflow_dispatch: | |
merge_group: | |
env: | |
GO_VERSION: "1.20.5" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint-protos: | |
name: Lint Protos and Check for Breaking Changes | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: bufbuild/buf-setup-action@v1 | |
- uses: bufbuild/buf-breaking-action@v1 | |
continue-on-error: true | |
with: | |
input: "proto" | |
against: "https://github.com/sonr-io/sonr.git#branch=master" | |
- uses: bufbuild/buf-lint-action@v1 | |
with: | |
input: "proto" |