add chunked uploads to the postman api description #310
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 | ||
Check failure on line 15 in .github/workflows/tests.yml GitHub Actions / TestsInvalid workflow file
|
||
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 |