xref: /dokuwiki/.github/workflows/testLinux.yml (revision 336fb258c8874689f6c480311d5b189bb6bd5381)
12cf7c325SAndreas Gohrname: Linux Unit Tests
22cf7c325SAndreas Gohr
3476584a3SAndreas Gohron:
4476584a3SAndreas Gohr  push:
5476584a3SAndreas Gohr    branches-ignore:
6476584a3SAndreas Gohr      - stable
7476584a3SAndreas Gohr      - old-stable
8476584a3SAndreas Gohr  pull_request:
92cf7c325SAndreas Gohr
10d3b90506SAlexpermissions:
11d3b90506SAlex  contents: read  #  to fetch code (actions/checkout)
12d3b90506SAlex
132cf7c325SAndreas Gohrjobs:
142cf7c325SAndreas Gohr    run:
152cf7c325SAndreas Gohr        name: PHP ${{ matrix.php-versions }}
162cf7c325SAndreas Gohr        runs-on: ubuntu-latest
17bb6dfcb8SAndreas Gohr        if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
182cf7c325SAndreas Gohr
192cf7c325SAndreas Gohr        strategy:
202cf7c325SAndreas Gohr            matrix:
21*336fb258SAndreas Gohr                php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
222cf7c325SAndreas Gohr            fail-fast: false
232cf7c325SAndreas Gohr
242cf7c325SAndreas Gohr        services:
252cf7c325SAndreas Gohr            mysql:
262cf7c325SAndreas Gohr                image: mysql:5.7
272cf7c325SAndreas Gohr                env:
282cf7c325SAndreas Gohr                    MYSQL_ALLOW_EMPTY_PASSWORD: yes
292cf7c325SAndreas Gohr                ports:
302cf7c325SAndreas Gohr                    - 3306:3306
312cf7c325SAndreas Gohr            postgres:
322cf7c325SAndreas Gohr                image: postgres:latest
332cf7c325SAndreas Gohr                env:
342cf7c325SAndreas Gohr                    POSTGRES_PASSWORD: postgres
352cf7c325SAndreas Gohr                ports:
362cf7c325SAndreas Gohr                    - 5432:5432
372cf7c325SAndreas Gohr        steps:
382cf7c325SAndreas Gohr            - name: Checkout
39*336fb258SAndreas Gohr              uses: actions/checkout@v3
402cf7c325SAndreas Gohr
412cf7c325SAndreas Gohr            - name: Setup PHP
422cf7c325SAndreas Gohr              uses: shivammathur/setup-php@v2
432cf7c325SAndreas Gohr              with:
442cf7c325SAndreas Gohr                  php-version: ${{ matrix.php-versions }}
452cf7c325SAndreas Gohr                  extensions: mbstring, intl, PDO, pdo_sqlite, pdo_mysql, pdo_pgsql, bz2
4689c597eaSAndreas Gohr                  ini-values: pcre.jit=0
472cf7c325SAndreas Gohr
482cf7c325SAndreas Gohr            - name: Setup problem matchers
492cf7c325SAndreas Gohr              run: |
502cf7c325SAndreas Gohr                echo ::add-matcher::${{ runner.tool_cache }}/php.json
512cf7c325SAndreas Gohr                echo ::add-matcher::${{ runner.tool_cache }}/phpunit.json
522cf7c325SAndreas Gohr
532cf7c325SAndreas Gohr            - name: Setup PHPUnit
542cf7c325SAndreas Gohr              run: |
552cf7c325SAndreas Gohr                  php _test/fetchphpunit.php
562cf7c325SAndreas Gohr                  cd _test
572cf7c325SAndreas Gohr                  cp mysql.conf.php.dist mysql.conf.php
582cf7c325SAndreas Gohr                  cp pgsql.conf.php.dist pgsql.conf.php
592cf7c325SAndreas Gohr
602cf7c325SAndreas Gohr            - name: Run PHPUnit
612cf7c325SAndreas Gohr              run: |
622cf7c325SAndreas Gohr                cd _test
632cf7c325SAndreas Gohr                php phpunit.phar --verbose --stderr
64