mirror of
https://github.com/usememos/memos.git
synced 2024-11-14 18:59:53 +08:00
34 lines
688 B
YAML
34 lines
688 B
YAML
name: Proto linter
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- "release/*.*.*"
|
|
paths:
|
|
- "proto/**"
|
|
|
|
jobs:
|
|
lint-protos:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup buf
|
|
uses: bufbuild/buf-setup-action@v1
|
|
with:
|
|
github_token: ${{ github.token }}
|
|
- name: buf lint
|
|
uses: bufbuild/buf-lint-action@v1
|
|
with:
|
|
input: "proto"
|
|
- name: buf format
|
|
run: |
|
|
if [[ $(buf format -d) ]]; then
|
|
echo "Run 'buf format -w'"
|
|
exit 1
|
|
fi
|