Testing ci #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Starknet-P2p-Specs-CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '*' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- auto_merge_enabled | |
env: | |
PROTOC_VERSION: v25.1 | |
jobs: | |
compile-protos: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install protobuf compiler (protoc) | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y protobuf-compiler | |
- name: Validate .proto files for Rust compatibility | |
run: protoc --rust_out=/dev/null --fatal_warnings **.proto | |
- name: Validate .proto files for Java compatibility | |
run: protoc --java_out=/dev/null --fatal_warnings **.proto | |
- name: Validate .proto files for python compatibility | |
run: protoc --python_out=/dev/null --fatal_warnings **.proto | |
- name: Validate .proto files for C++ compatibility | |
run: protoc --cpp_out=/dev/null --fatal_warnings **.proto | |
- name: Validate .proto files for Go compatibility | |
run: protoc --go_out=/dev/null --fatal_warnings **.proto | |
- name: Success Message | |
run: echo "All proto compilations passed!" |