Skip to content

function to compress data without having to store everything in memory #62

function to compress data without having to store everything in memory

function to compress data without having to store everything in memory #62

Workflow file for this run

on: push
name: Test
jobs:
test:
name: Check + test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install minimal nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test