Skip to content

Watcher ("auto-import") #164

Watcher ("auto-import")

Watcher ("auto-import") #164

Workflow file for this run

name: CI Unit Testing
on: [ pull_request ]
jobs:
build_and_test:
name: Build and test rust
runs-on: ubuntu-latest
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v2
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Build workspace
run: cargo build --release --features big
shell: bash
- name: Test big
run: cargo test --features big
shell: bash
- name: Test small
run: cargo test --features small
shell: bash