Skip to content

update cargo.toml

update cargo.toml #13

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- "**.md"
push:
branches:
- main
paths-ignore:
- "**.md"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install Protobuf
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose