check for outdated protofiles #283
Workflow file for this run
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: Build and Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.3 | |
- name: Set up protoc | |
run: | | |
wget https://github.com/protocolbuffers/protobuf/releases/download/v25.0/protoc-25.0-linux-x86_64.zip | |
unzip protoc-25.0-linux-x86_64.zip | |
sudo mv bin/protoc /usr/local/bin/protoc | |
sudo mv include/* /usr/local/include/ | |
- name: Install protoc-gen-go | |
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28.1 | |
- name: Generated protofiles are up to date | |
run: | | |
make generate-golang | |
git diff --exit-code | |
changed_files=$(git diff --name-only) | |
if [ -n "$changed_files" ]; then | |
echo "The following protobuf files are not updated:" | |
echo "$changed_files" | |
exit 1 | |
fi | |
- name: No formatting changes | |
run: | | |
make format | |
changed_files=$(git diff --name-only) | |
if [ -n "$changed_files" ]; then | |
echo "The following files are not formatted:" | |
echo "$changed_files" | |
exit 1 | |
fi | |
- name: Install ZMQ | |
run: sudo apt update -y && sudo apt upgrade -y && sudo apt install libsodium-dev libzmq3-dev | |
- name: Test | |
run: make test | |
- name: Integration Test | |
run: make integration |