Adjust phpdoc job for upstream. Drop satis job #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: | |
- FRAMEWORK_6_0 | |
pull_request: | |
branches: | |
- FRAMEWORK_6_0 | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
run: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: ['ubuntu-22.04'] | |
php-versions: ['7.4', '8.0', '8.1', '8.2', 'latest'] | |
steps: | |
- name: Setup github ssh key | |
run: mkdir -p ~/.ssh/ && ssh-keyscan -t rsa github.com > ~/.ssh/known_hosts | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: bcmath, ctype, curl, dom, gd, gettext, iconv, imagick, json, ldap, mbstring, mysql, opcache, openssl, pcntl, pdo, posix, redis, soap, sockets, sqlite, tokenizer, xmlwriter | |
ini-values: post_max_size=512M, max_execution_time=360 | |
coverage: xdebug | |
tools: php-cs-fixer, phpunit, composer:v2, phpstan | |
- name: Setup Github Token as composer credential | |
run: composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} | |
- name: Install horde/test dependency and other dependencies | |
run: | | |
## For unclear reasons, github action fails randomly if we do not install before we require. | |
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer config minimum-stability dev | |
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer install | |
- name: Setup problem matchers for PHPUnit | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: run phpunit | |
run: phpunit --bootstrap test/bootstrap.php | |
- name: run phpstan | |
run: phpstan analyze src/ --level 2 |