[dictionary-std] Update DICOM tag dictionary again #1449
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: | |
- 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 | |
- run: cargo test --features image,ndarray,sop-class,rle,cli,jpegxl | |
# test dicom-pixeldata with openjp2 | |
- run: cargo test -p dicom-pixeldata --features openjp2 | |
# test dicom-pixeldata with openjpeg-sys and charls | |
- run: cargo test -p dicom-pixeldata --features openjpeg-sys,charls | |
# test dicom-pixeldata with gdcm-rs | |
- run: cargo test -p dicom-pixeldata --features gdcm | |
# test dicom-pixeldata without default features | |
- run: cargo test -p dicom-pixeldata --no-default-features | |
- run: cargo test -p dicom-ul --features async | |
# 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 | |