Handle DecompressionBombError when uploading a large image #106
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: Python tox + coverage CI | |
# You may need to add pull_request for the coverall action | |
on: ["push", "pull_request"] | |
# on: "push" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.7, 3.8, 3.9, "3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox tox-gh-actions | |
pip install -r example/requirements.txt | |
- name: Run Tox | |
run: tox | |
- name: Run isort and black | |
# needs to be run outside of pytest else only the example app is tested | |
run: | | |
isort . | |
black . | |
- name: Report to coverall # by the package as the action is broken, but won't work on external forks! | |
if: matrix.python-version == 3.7 && github.repository == 'jonasundderwolf/django-image-cropping' | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
run: | | |
pip install coveralls | |
coveralls |