From 82e1ac4a8ecd11881c7c39ff97da0cffd98fb18e Mon Sep 17 00:00:00 2001 From: Edward McFarlane Date: Thu, 22 Feb 2024 10:33:34 +0000 Subject: [PATCH] Fix lint --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8f13949..5ad64d9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,8 +30,8 @@ jobs: run: make build && make checkgenerate - uses: bufbuild/buf-setup-action@v1.29.0-1 - run: | - mkdir -p test + mkdir -p test/v1 echo "version: v1" >> buf.yaml - echo 'syntax = "proto3"; package test; message A { string a = 1; }' >> test/test.proto + echo 'syntax = "proto3"; package test; message A { string a = 1; }' >> test/v1/test.proto - name: Validate Action uses: ./