An image is now downloaded as tmp file when the method `ResourceFacto… #34
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: | |
- master | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
name: Unit Tests [PHP ${{ matrix.php-versions }}] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['8.1', '8.2'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet | |
- name: Run tests | |
run: vendor/bin/tester -C -s ./tests | |
- name: Install dependencies (lowest) | |
run: composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable --optimize-autoloader --quiet | |
- name: Run tests | |
run: vendor/bin/tester -C -s ./tests |