feat(BOUN-1216): use system and sharded load shedders from ic-bn-lib #227
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: never | |
jobs: | |
test: | |
runs-on: dind-small | |
container: | |
image: ghcr.io/catthehacker/ubuntu:rust-22.04@sha256:baeacfa8e05a4402c2e17d8a495dadbb7a6062a8ae44eef7c22424d617c53373 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 | |
- name: Install protoc | |
run: sudo apt-get update && sudo apt-get -y install protobuf-compiler | |
- name: Run tests | |
run: cargo test |