We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7885101 + 32a0578 commit a890d41Copy full SHA for a890d41
.github/workflows/cicd.yaml
@@ -67,6 +67,16 @@ jobs:
67
toolchain: ${{ matrix.rust-version }}
68
override: true
69
70
+ - name: Install Protobuf Compiler (Ubuntu)
71
+ if: matrix.os == 'ubuntu-latest'
72
+ run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
73
+ - name: Install Protobuf Compiler (macOS)
74
+ if: matrix.os == 'macos-13'
75
+ run: brew install protobuf
76
+ - name: Install Protobuf Compiler (Windows)
77
+ if: matrix.os == 'windows-latest'
78
+ run: choco install protoc --yes
79
+
80
- name: Build (no default-features)
81
uses: actions-rs/cargo@v1
82
with:
0 commit comments