mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 13:55:17 +00:00
## Description by adding paths the ci job wont run if the files aren't touched. this is a change from before where they would run to see if there were changes Closes: #XXX
19 lines
377 B
YAML
19 lines
377 B
YAML
name: Proto check
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**.proto"
|
|
jobs:
|
|
proto-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: lint
|
|
run: make proto-lint
|
|
proto-breakage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: check-breakage
|
|
run: make proto-check-breaking-ci
|