Lines Matching +full:fail +full:- +full:fast
3 # https://docs.github.com/en/actions/using-workflows/reusing-workflows#creating-a-reusable-workflow
7 # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs
19 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaults
31 runs-on: ubuntu-latest
34 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_id…
39 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-ad…
41 fail-fast: false
48 - name: Phpunit ${{ matrix.php }}
54 # https://github.com/marketplace/actions/setup-php-action#matrix-setup
55 - name: Setup PHP
56 uses: shivammathur/setup-php@v2
58 php-version: ${{ matrix.php }}
60 ini-values: pcre.jit=0
64 # https://github.com/marketplace/actions/setup-php-action#problem-matchers
67 - name: Setup problem matchers for PHP
68 run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
69 - name: Setup problem matchers for PHPUnit
70 run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
73 - name: Checkout Dokuwiki
77 fetch-depth: '1' # th is the default value but this is more expressive
83 - name: Checkout Combo
89 # Runs command-line programs using the operating system's shell.
90 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_id…
91 - name: Post installation (Download Requirements)
95 …# https://docs.github.com/en/actions/security-guides/encrypted-secrets#using-encrypted-secrets-in-…
98 working-directory: .
102 # https://github.com/actions/setup-node/issues/160#issuecomment-642739512
104 # otherwise you get a time-out as it tries to download it and failed
105 - uses: actions/setup-node@v3
107 # node-version: latest
110 - name: Yarn install
112 npm install --global yarn
116 - name: Installed Locale
117 run: locale -a
120 - name: Setup PHPUnit
123 composer install --no-interaction --no-progress --no-suggest --prefer-dist
126 # This one does not work: https://github.com/mheap/phpunit-matcher-action
128 - name: Test
130 phpunit --version
131 …phpunit --stderr --configuration _test/phpunit.xml --verbose --debug --bootstrap ${COMBO_HOME}/_te…