Skip to content

Commit

Permalink
run ci
Browse files Browse the repository at this point in the history
  • Loading branch information
isaidsari committed Apr 14, 2024
1 parent 93b6f81 commit 2e8d685
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/build-and-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@ runs:
with:
toolchain: stable

- name: Install protoc compiler
shell: bash
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
name: Install protoc compiler
shell: bash
# run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update && sudo apt-get install -y protobuf-compiler
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install important_windows_software
else
echo "$RUNNER_OS not supported"
exit 1
fi
- name: 🔨 Build
uses: actions-rs/cargo@v1
Expand Down

0 comments on commit 2e8d685

Please sign in to comment.