astral_async_zip 0.0.18

An asynchronous ZIP archive reading/writing crate.
Documentation
name: Test (Linux)

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

env:
  CARGO_TERM_COLOR: always

permissions: {}

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
        with:
          persist-credentials: false

      - name: Test [no features]
        run: cargo test --verbose

      - name: Test ['tokio' feature]
        run: cargo test --verbose --features tokio

      - name: Test ['tokio-fs' feature]
        run: cargo test --verbose --features tokio-fs

      - name: Test ['deflate' feature]
        run: cargo test --verbose --features deflate

      - name: Test ['bzip2' feature]
        run: cargo test --verbose --features bzip2

      - name: Test ['lzma' feature]
        run: cargo test --verbose --features lzma

      - name: Test ['zstd' feature]
        run: cargo test --verbose --features zstd

      - name: Test ['xz' feature]
        run: cargo test --verbose --features xz

      - name: Test ['deflate64' feature]
        run: cargo test --verbose --features deflate64

      - name: Test ['full' feature]
        run: cargo test --verbose --features full