Skip to content

fix: downloading with stream for small blobs #26

fix: downloading with stream for small blobs

fix: downloading with stream for small blobs #26

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
components: rustfmt, clippy
- name: Build
run: make build
- name: Run tests
run: make test
- name: Run linter
run: make lint
- name: Generate documentation
run: make doc