diff options
author | 2024-08-05 18:29:06 -0700 | |
---|---|---|
committer | 2024-08-05 18:29:06 -0700 | |
commit | ff257a3a32a91f5f6e6b17bb831cc2c52f604ebc (patch) | |
tree | e1daab7240a0cab3961a9fc7d8e3396bd4c009c8 /api | |
parent | 745531ce8d97a908cb4f2b8d6e032840d8936016 (diff) | |
download | ibd-trader-ff257a3a32a91f5f6e6b17bb831cc2c52f604ebc.tar.gz ibd-trader-ff257a3a32a91f5f6e6b17bb831cc2c52f604ebc.tar.zst ibd-trader-ff257a3a32a91f5f6e6b17bb831cc2c52f604ebc.zip |
Adds buf CI
Diffstat (limited to 'api')
-rw-r--r-- | api/.github/workflows/buf-ci.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/api/.github/workflows/buf-ci.yaml b/api/.github/workflows/buf-ci.yaml new file mode 100644 index 0000000..4eb4862 --- /dev/null +++ b/api/.github/workflows/buf-ci.yaml @@ -0,0 +1,18 @@ +name: Buf CI + +on: + push: + pull_request: + types: [opened, synchronize, reopened, labeled, unlabeled] + delete: + +permissions: + contents: read + pull-requests: write + +jobs: + buf: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: bufbuild/buf-action@v1 |