Skip to content

Fix regenerating thumbnails on systems where true is a shell builti… #139

Fix regenerating thumbnails on systems where true is a shell builti…

Fix regenerating thumbnails on systems where true is a shell builti… #139

Workflow file for this run

on:
pull_request:
push:
branches: ["master"]
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
jobs:
main:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.12" ] # Lowest and highest.
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
- run: pip install -r requirements.txt
- run: pip install -r requirements_dev.txt
- uses: pre-commit/[email protected]