You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
377 B

  1. name: Proto check
  2. on:
  3. pull_request:
  4. paths:
  5. - "**.proto"
  6. jobs:
  7. proto-lint:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@master
  11. - name: lint
  12. run: make proto-lint
  13. proto-breakage:
  14. runs-on: ubuntu-latest
  15. steps:
  16. - uses: actions/checkout@master
  17. - name: check-breakage
  18. run: make proto-check-breaking-ci