Skip to content

Add prost-wkt-derive to derive MessageSerde #141

Add prost-wkt-derive to derive MessageSerde

Add prost-wkt-derive to derive MessageSerde #141

Workflow file for this run

on: [push, pull_request]
name: prost-wkt build
env:
PROTOC_VERSION: 3.20.3
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
rust:
- stable
- 1.70.0
steps:
- uses: actions/checkout@v4
- name: install toolchain (${{ matrix.rust }})
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: install protoc
uses: taiki-e/install-action@v2
with:
tool: protoc@${{ env.PROTOC_VERSION }}
- name: execute build
run: cargo build
- name: execute test
run: cargo test --workspace