Skip to content

update changelog and version #144

update changelog and version

update changelog and version #144

Workflow file for this run

name: CI tests
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [stable, nightly, 1.56.0, macos, windows, mingw]
include:
- build: stable
os: ubuntu-latest
rust: stable
- build: nightly
os: ubuntu-latest
rust: nightly
- build: 1.56.0
os: ubuntu-latest
rust: 1.56.0
- build: macos
os: macos-latest
rust: stable
- build: windows
os: windows-latest
rust: stable
- build: mingw
os: windows-latest
rust: stable-x86_64-gnu
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- run: cargo test --manifest-path ./miniz_oxide/Cargo.toml
- run: cargo test --manifest-path ./miniz_oxide/Cargo.toml --features simd
- run: cargo test --manifest-path ./miniz_oxide/Cargo.toml --no-default-features
- name: Test minimal
if: ${{ matrix.rust != '1.56.0' }}
run: cargo test
wasm:
name: WebAssembly
runs-on: ubuntu-latest
strategy:
matrix:
target: [wasm32-unknown-unknown, wasm32-wasi]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: ${{ matrix.target }}
- run: cargo build -p miniz_oxide --target ${{ matrix.target }}