Skip to content

Commit

Permalink
Fix windows tests launch
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-asriyan committed Dec 19, 2023
1 parent 297b5f9 commit a30864c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,14 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install run-time dependencies
- name: Install giffki
if: ${{ matrix.case == 'gif' }}
shell: bash
run: |
[[ "${{ matrix.case }}" == "apng" ]] && winget install ffmpeg || echo ok;
[[ "${{ matrix.case }}" == "gif" ]] && cargo install gifski || echo ok;
run: cargo install gifski

- name: Install ffmpeg
if: ${{ matrix.case == 'apng' }}
uses: FedericoCarboni/setup-ffmpeg@v2

- name: Download artifact
uses: actions/download-artifact@v3
Expand Down

0 comments on commit a30864c

Please sign in to comment.