Skip to content

Commit

Permalink
Don't require coprocess:lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tit Petric committed Sep 12, 2024
1 parent feacc31 commit cf6224e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion coprocess/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ tasks:
# the replacement exists as a hack for:
# https://github.com/grpc/grpc-go/issues/7350
- sed -i -e 's/compatibility$/compatibility./g' *.pb.go
- schema-gen extract -o - | schema-gen lint -i -
- defer: rm schema.json
# schema-gen has some compatibility issues on 5.3, likely
# due to go version; follow up with more specific ci-tools
- schema-gen extract || true
- schema-gen lint || true

deps:
desc: "Update deps"
Expand Down

0 comments on commit cf6224e

Please sign in to comment.