Skip to content

Commit

Permalink
Add pyheif==0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
homm committed Aug 19, 2024
1 parent e4f4afe commit 51f173e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/Check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@ on: [push]

jobs:
check:
name: py${{ matrix.python }} pillow-${{ matrix.pillow }} libheif-${{ matrix.libheif }}
name: py${{ matrix.python }} pillow-${{ matrix.pillow }} libheif-${{ matrix.libheif }} pyheif-${{ matrix.pyheif }}
runs-on: ubuntu-20.04
timeout-minutes: 3
strategy:
matrix:
python: ['3.8', '3.11']
pillow: [prod, latest]
libheif: ['1.16.2-6ee6762-3f6b709', '1.18.2-bf35e9e-47f4fc0']
include:
- python: '3.8'
libheif: '1.16.2-6ee6762-3f6b709'
pyheif: '0.7.1'

steps:
- uses: actions/checkout@v2
Expand All @@ -27,6 +31,11 @@ jobs:
run: pip install pip==23.2.1
- name: Install dependencies
run: make install-pillow-${{ matrix.pillow }}
- name: Install ovsolete pyheif
if: ${{ matrix.pyheif }}
run: |
pip uninstall -y pyheif
pip install pyheif==${{ matrix.pyheif }}
- name: Check
run: make check
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 51f173e

Please sign in to comment.