Use the voi function, window and rescale of the decoded frame #1465
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: continuous integration | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: Test (default) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.72.0 | |
- stable | |
- beta | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: clippy | |
cache: true | |
# test project with default + extra features | |
- if: matrix.rust == 'stable' || matrix.rust == 'beta' | |
run: cargo test --features image,ndarray,sop-class,rle,cli,jpegxl | |
# test dicom-pixeldata with openjp2 | |
- if: matrix.rust == 'stable' || matrix.rust == 'beta' | |
run: cargo test -p dicom-pixeldata --features openjp2 | |
# test dicom-pixeldata with openjpeg-sys and charls | |
- if: matrix.rust == 'stable' || matrix.rust == 'beta' | |
run: cargo test -p dicom-pixeldata --features openjpeg-sys,charls | |
# test dicom-pixeldata with gdcm-rs | |
- if: matrix.rust == 'stable' || matrix.rust == 'beta' | |
run: cargo test -p dicom-pixeldata --features gdcm | |
# test dicom-pixeldata without default features | |
- if: matrix.rust == 'stable' || matrix.rust == 'beta' | |
run: cargo test -p dicom-pixeldata --no-default-features | |
# test dicom-ul with async feature | |
- if: matrix.rust == 'stable' || matrix.rust == 'beta' | |
run: cargo test -p dicom-ul --features async | |
# test library projects with minimum rust version | |
- if: matrix.rust == '1.72.0' | |
run: | | |
cargo test -p dicom-core | |
cargo test -p dicom-encoding | |
cargo test -p dicom-dictionary-std | |
cargo test -p dicom-parser | |
cargo test -p dicom-transfer-syntax-registry | |
cargo test -p dicom-object | |
cargo test -p dicom-dump --no-default-features --features sop-class | |
cargo test -p dicom-json | |
cargo test -p dicom-ul | |
cargo test -p dicom-pixeldata | |
cargo check -p dicom | |
env: | |
RUSTFLAGS: -W warnings | |
# run Clippy with stable toolchain | |
- if: matrix.rust == 'stable' | |
run: cargo clippy | |
env: | |
RUSTFLAGS: -W warnings | |
check_windows: | |
name: Build (Windows) | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
cache: true | |
- run: cargo build --features=cli,inventory-registry,sop-class | |
check_macos: | |
name: Check (macOS) | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
cache: true | |
- run: cargo check | |