aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/http/.github/workflows/ci.yml
blob: cbb681e53d21503a8ab2d40a70b5974b675c2b9e (plain) (blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: continuous-integration
on:
  push:
    branches:
      - master
      - release/*
  pull_request:
jobs:
  unit-testing:
    name: PHPUnit (PHP ${{ matrix.php-versions }})
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
        coverage: ['xdebug']
        code-analysis: ['no']
        include:
          - php-versions: '7.1'
            code-analysis: 'yes'
    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Setup PHP, with composer and extensions
        uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
        with:
          php-version: ${{ matrix.php-versions }}
          extensions: ctype, curl, mbstring, xdebug
          coverage: ${{ matrix.coverage }}
          tools: composer

      - name: Get composer cache directory
        id: composer-cache
        run: echo "::set-output name=dir::$(composer config cache-files-dir)"

      - name: Cache composer dependencies
        uses: actions/cache@v2
        with:
          path: ${{ steps.composer-cache.outputs.dir }}
          key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
          restore-keys: ${{ runner.os }}-composer-

      - name: Install composer dependencies
        run: composer install --no-progress --prefer-dist --optimize-autoloader

      - name: Code Analysis (PHP CS-Fixer)
        if: matrix.code-analysis == 'yes'
        run: php vendor/bin/php-cs-fixer fix --dry-run --diff

      - name: Code Analysis (PHPStan)
        if: matrix.code-analysis == 'yes'
        run: composer phpstan

      - name: Run application server
        run: php -S localhost:8000 -t tests/www 2>/dev/null &

      - name: Test with phpunit
        run: vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover clover.xml

      - name: Code Coverage
        uses: codecov/codecov-action@v2
        if: matrix.coverage != 'none'