generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (33 loc) · 1.07 KB
/
run-tests-pz7ip.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Tests with pz7ip (no rar)
on: [push, pull_request]
jobs:
pz7ip:
runs-on: ubuntu-latest
steps:
- name: Install apt packages
run: |
sudo apt -y install p7zip-full ghostscript imagemagick
sudo sed -i '/disable ghostscript format types/,+6d' /etc/ImageMagick-6/policy.xml
shell: bash
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: imagick, zip, fileinfo, bz2
coverage: pcov
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: composer update --prefer-dist --no-interaction
- name: Create .env file
run: |
cp .env.example .env
shell: bash
- name: Check extension imagick
run: php -m | grep imagick
- name: Execute tests
run: vendor/bin/pest