Bump color_quant from 1.1.0 to 2.0.0 in the image group across 1 directory #4285
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: ["*"] | |
| paths-ignore: | |
| - "docs/**" | |
| - "**.md" | |
| - "docs/web/**" | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "docs/**" | |
| - "**.md" | |
| - "docs/web/**" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| CI: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - name: Build | |
| run: cargo build --features=fail-on-deprecated | |
| - name: Run tests | |
| run: cargo test |