Skip to content

Bump the cargo group across 1 directory with 2 updates #142

Bump the cargo group across 1 directory with 2 updates

Bump the cargo group across 1 directory with 2 updates #142

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protoc
run: |
sudo apt update
sudo apt-get install -y protobuf-compiler
- name: Build
run: cd src/api/builtin_modules/builder/builder-rs; cargo build --verbose
- name: Run tests
run: cd src/api/builtin_modules/builder/builder-rs; cargo test --verbose