Skip to content

fix: protoc install

fix: protoc install #4

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Protobuf Compiler (protoc)
run: sudo apt-get install -y protobuf-compiler
- name: Check Diff
run: git diff --exit-code
- name: Cargo Format
run: make check-fmt
- name: Cargo Clippy
run: make check-clippy
- name: Cargo Sort
run: make cargo-sort
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Protobuf Compiler (protoc) on Ubuntu
if: runner.os == 'Linux'
run: sudo apt-get install -y protobuf-compiler
- name: Install Protobuf Compiler (protoc) on macOS
if: runner.os == 'macOS'
run: brew install protobuf
- name: Install Protobuf Compiler (protoc) on Windows
if: runner.os == 'Windows'
run: |
choco install protoc --version=3.21.9
echo "::add-path::C:\ProgramData\chocolatey\bin"
- name: Build
run: cargo build
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Protobuf Compiler (protoc) on Ubuntu
if: runner.os == 'Linux'
run: sudo apt-get install -y protobuf-compiler
- name: Install Protobuf Compiler (protoc) on macOS
if: runner.os == 'macOS'
run: brew install protobuf
- name: Install Protobuf Compiler (protoc) on Windows
if: runner.os == 'Windows'
run: |
choco install protoc --version=3.21.9
echo "::add-path::C:\ProgramData\chocolatey\bin"
- name: Run Tests
run: cargo test --no-fail-fast --all-targets --all-features --workspace
- name: Run Doc Tests
run: cargo test --no-fail-fast --doc --all-features --workspace