Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identities with unittests simplified #21

Draft
wants to merge 4 commits into
base: FRAMEWORK_6_0
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ on:
push:
branches:
- master
- ci-fxes
- maintaina-composerfixed
- FRAMEWORK_6_0
- identites-test-branch
pull_request:
branches:
- master
Expand All @@ -24,17 +26,24 @@ on:
jobs:
run:
runs-on: ${{ matrix.operating-system }}
timeout-minutes: 30
strategy:
matrix:
operating-system: ['ubuntu-20.04']
php-versions: ['7.4', '8.0', 'latest']
phpunit-versions: ['latest', '9.5']
include:
- operating-system: 'ubuntu-22.04'
php-versions: '7.4'
phpunit-versions: '9.5'
- operating-system: 'ubuntu-22.04'
php-versions: '8.0'
phpunit-versions: '9.5'
# - operating-system: 'ubuntu-22.04'
# php-versions: '8.1'
# phpunit-versions: '10.1'
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:
Expand All @@ -51,4 +60,5 @@ jobs:
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer config minimum-stability dev
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer install
- name: run phpunit
run: phpunit --bootstrap test/bootstrap.php
run: |
phpunit --bootstrap test/Imp/bootstrap.php
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ run-tests.log
/.phpunit.cache
.phpunit.results.cache
.php-cs-fixer.cache

# secrets

.secrets
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@
"horde/horde-installer-plugin": true
}
}
}
}
Loading
Loading