Skip to content

Bump bytes from 1.11.0 to 1.11.1 in /agentic-pipelines #2

Bump bytes from 1.11.0 to 1.11.1 in /agentic-pipelines

Bump bytes from 1.11.0 to 1.11.1 in /agentic-pipelines #2

Workflow file for this run

name: Rust Tests
on:
pull_request:
paths:
- "agentic-pipelines/**"
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: agentic-pipelines
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: agentic-pipelines
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose