Bump to version 2.13.0 #68
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: CI | |
on: | |
- pull_request | |
- push | |
jobs: | |
unit-tests: | |
strategy: | |
matrix: | |
operating-system: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
php-version: | |
- '5.3' | |
- '5.4' | |
- '5.5' | |
- '5.6' | |
- '7.0' | |
- '7.1' | |
- '7.2' | |
- '7.3' | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
name: unit-tests on php-${{ matrix.php-version }} - ${{ matrix.operating-system }} | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: dom, libxml, xmlwriter | |
coverage: xdebug | |
- name: Install composer dependencies | |
run: composer update --no-ansi --no-interaction --no-progress | |
- name: Run unit tests | |
run: php tests/run.php unit | |
env: | |
XDEBUG_MODE: coverage | |
e2e-tests: | |
strategy: | |
matrix: | |
tesseract-version: | |
- '3.02' | |
- '3.03' | |
- '3.04' | |
- '3.05' | |
- '4.00' | |
- '4.1.0' | |
- '4.1.1' | |
- '4.1.3' | |
- '5.0.1' | |
- '5.1.0' | |
name: e2e-tests on tesseract-${{ matrix.tesseract-version }} | |
runs-on: ubuntu-latest | |
container: quay.io/thiagoalessio/tesseract-ocr-for-php-ci:${{ matrix.tesseract-version }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Use insecure transport for composer on very old images | |
run: | | |
composer config --global disable-tls true | |
composer config --global secure-http false | |
composer config --global repo.packagist composer http://packagist.org | |
if: ${{ matrix.tesseract-version == '3.02' || matrix.tesseract-version == '3.03' }} | |
- name: Install dependencies | |
run: composer update --no-ansi --no-interaction --no-progress | |
- name: Run end-to-end tests | |
run: php tests/run.php e2e | |
env: | |
XDEBUG_MODE: coverage | |
code-coverage: | |
name: code-coverage | |
runs-on: ubuntu-latest | |
container: quay.io/thiagoalessio/tesseract-ocr-for-php-ci:5.1.0 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install composer dependencies | |
run: composer update --no-ansi --no-interaction --no-progress | |
- name: Run unit + e2e tests | |
run: php tests/run.php unit e2e | |
env: | |
XDEBUG_MODE: coverage | |
- name: Report code coverage | |
run: bash <(curl -s https://codecov.io/bash) |