Merge pull request #307 from woelper/feat/apng #225
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
on: [push] | |
name: Check Windows | |
jobs: | |
check: | |
strategy: | |
matrix: | |
os: [windows-latest, windows-2019] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ilammy/setup-nasm@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install vcpkg | |
run: vcpkg integrate install | |
- name: Install libheif | |
run: vcpkg install libheif:x64-windows-static-md | |
- name: Install libheif static | |
run: vcpkg install libheif:x64-windows-static | |
- name: cargo check without default features | |
run: cargo check --no-default-features | |
- name: cargo check build features | |
run: cargo check --features heif |