PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Classes of Roni   Easy Merge2PDF   .github/workflows/ci.yml   Download  
File: .github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easy Merge2PDF
Merge PDF and Image files into a single PDF file
Author: By
Last change:
Date: 1 year ago
Size: 920 bytes
 

Contents

Class file image Download
name: CI on: [ push, pull_request ] jobs: tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install dependencies run: composer install - name: Install dependencies run: | curl -L https://github.com/ajaxray/merge2pdf/releases/download/v1.1.0/merge2pdf_linux-amd64.OS -o /usr/local/bin/merge2pdf chmod +x /usr/local/bin/merge2pdf curl -L https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar -o /usr/local/bin/php-coveralls chmod +x /usr/local/bin/php-coveralls mkdir -p build/logs - name: Run tests run: XDEBUG_MODE=coverage vendor/bin/phpunit - name: Upload coverage results to Coveralls env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | php-coveralls --coverage_clover=build/logs/clover.xml -v