File: phpunit.yml

package info (click to toggle)
matomo-device-detector 6.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,684 kB
  • sloc: php: 7,758; xml: 79; makefile: 15; sh: 3
file content (67 lines) | stat: -rw-r--r-- 1,747 bytes parent folder | download
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
64
65
66
67
name: PHPUnit

on:
  pull_request:
  push:
    branches: [ master ]

permissions:
  actions: read
  checks: read
  contents: read
  deployments: none
  issues: read
  packages: none
  pull-requests: read
  repository-projects: none
  security-events: none
  statuses: none

jobs:
  build:
    name: PHPUnit
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
        php-version: ['7.2', '8.5']
        composer-options: ['']
        include:
          - php-version: 7.3
            os: ubuntu-latest
            composer-options: ''
          - php-version: 7.4
            os: ubuntu-latest
            composer-options: ''
          - php-version: 8.0
            os: ubuntu-latest
            composer-options: ''
          - php-version: 8.1
            os: ubuntu-latest
            composer-options: ''
          - php-version: 8.2
            os: ubuntu-latest
            composer-options: ''
          - php-version: 8.3
            os: ubuntu-latest
          - php-version: 8.4
            os: ubuntu-latest
            composer-options: ''
          - php-version: nightly
            os: ubuntu-latest
            composer-options: '--ignore-platform-req=php+'
    steps:
      - uses: actions/checkout@v6
      - name: Install PHP
        uses: shivammathur/setup-php@v2
        with:
          php-version: ${{ matrix.php-version }}
          extensions: memcached
      - name: "Composer install"
        run: |
          composer install ${{ matrix.composer-options }}
          composer require doctrine/cache ~1.2 ${{ matrix.composer-options }}
      - name: PHPUnit / PHP ${{ matrix.php-version }}
        run: |
          php -v
          ./vendor/bin/phpunit