ok

Mini Shell

Direktori : /home2/selectio/public_html/limpiar.in.net/vendor/dasprid/enum/.github/workflows/
Upload File :
Current File : /home2/selectio/public_html/limpiar.in.net/vendor/dasprid/enum/.github/workflows/tests.yml

name: Tests

on: [push, pull_request]

jobs:
  php-tests:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: true
      matrix:
        php: [8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1]
        dependency-version: [prefer-stable]
        os: [ubuntu-latest, windows-latest]

    name: ${{ matrix.os }} - PHP${{ matrix.php }} - ${{ matrix.dependency-version }}

    steps:
      - name: Set git to use LF
        run: |
          git config --global core.autocrlf false
          git config --global core.eol lf

      - name: Checkout code
        uses: actions/checkout@v3

      - name: Cache dependencies
        uses: actions/cache@v3
        with:
          path: ~/.composer/cache/files
          key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

      - name: Setup PHP
        uses: shivammathur/setup-php@v2
        with:
          php-version: ${{ matrix.php }}
          coverage: none

      - name: Install dependencies
        run: |
          composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction

      - name: Execute tests
        run: vendor/bin/phpunit

      - name: Code Sniffer
        run: vendor/bin/phpcs


Zerion Mini Shell 1.0