1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-26 15:24:37 +02:00

Github workflows "Run tests"

This commit is contained in:
Oliver Vogel
2021-12-19 16:34:23 +01:00
parent b15d5bc4a1
commit d9aafc2b29

24
.github/workflows/run-tests.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: run-tests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.0']
name: Testing on PHP ${{ matrix.php-versions }}
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: imagick,gd,mbstring,bcmath
tools: phpunit,composer
- name: install deps
run: composer install -o -q
- name: run phpunit
run: vendor/bin/phpunit