Skip to content

feat(ci): Adds github action that runs cargo build|test #2

feat(ci): Adds github action that runs cargo build|test

feat(ci): Adds github action that runs cargo build|test #2

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose