-
Notifications
You must be signed in to change notification settings - Fork 27
46 lines (42 loc) · 1.21 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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"