fix an issue where trying to load large videos would exceed the memory limit #270
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
execute-tests: | |
name: Setup testing environment and execute tests | |
# https://github.com/cybex-gmbh/github-workflows/blob/main/.github/workflows/tests.yml | |
uses: cybex-gmbh/github-workflows/.github/workflows/tests.yml@main | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ 8.2, 8.3 ] | |
laravel: [ 11.* ] | |
dependency-version: [ prefer-stable ] | |
with: | |
PHP_VERSION: ${{ matrix.php }} | |
LARAVEL_VERSION: ${{ matrix.laravel }} | |
DEPENDENCY_VERSION: ${{ matrix.dependency-version }} | |
MYSQL_DATABASE: transmorpher_test | |
LINUX_PACKAGES: imagemagick jpegoptim optipng pngquant gifsicle webp ffmpeg |