Skip to content

ci:install protobuf #48

ci:install protobuf

ci:install protobuf #48

Workflow file for this run

name: RustMacos
on:
push:
branches: ["main"]
pull_request:
branches: ["main", "dev"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Config Env
run: rustup install nightly && rustup default nightly
- name: Install Protobuf
run: sudo brew install protobuf
- name: Build
run: cd gdrust && cargo build --all
- name: Build Release
run: cd gdrust && cargo build --all --release
- name: Run tests Debug
run: cd gdrust && cargo test --all
- name: Run tests Release
run: cd gdrust && cargo test --all --release