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

PHP 8 migration #34

Merged
merged 2 commits into from
Oct 5, 2022
Merged
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
28 changes: 28 additions & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Continuous integration

on:
push:
branches: [ master, develop ]
pull_request:
branches: [ develop ]

jobs:
ci:
runs-on: ${{ matrix.operating-system }}

strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest ]
php-version: [ '7.4', '8.0', '8.1' ]
include:
- php-version: '8.1'
coverage: true

steps:
- name: CI
uses: oat-sa/tao-extension-ci-action@v1
with:
php: ${{ matrix.php-version }}
coverage: ${{ matrix.coverage }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please fix CI by adding test suit path as here https://github.com/oat-sa/tao-extension-ci-action

test-suites-path: test
31 changes: 15 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
{

"name": "oat-sa/extension-tao-blueprints",
"description" : "Extension to manage blue prints",
"type" : "tao-extension",
"authors" : [
"description": "Extension to manage blue prints",
"type": "tao-extension",
"authors": [
{
"name": "Open Assessment Technologies SA"
"name": "Open Assessment Technologies SA"
}
],
"keywords" : [
"keywords": [
"tao",
"computer-based-assessment"
],
"homepage" : "http://www.taotesting.com",
"license" : [
"homepage": "http://www.taotesting.com",
"license": [
"GPL-2.0"
],
"extra" : {
"tao-extension-name" : "taoBlueprints"
"extra": {
"tao-extension-name": "taoBlueprints"
},
"minimum-stability" : "dev",
"minimum-stability": "dev",
"require": {
"oat-sa/oatbox-extension-installer": "~1.1||dev-master",
"oat-sa/generis" : ">=14.0.0",
"oat-sa/tao-core" : ">=47.0.0"
"oat-sa/generis": ">=15.22",
"oat-sa/tao-core": ">=50.24.6"
},
"autoload" : {
"psr-4" : {
"oat\\taoBlueprints\\" : ""
"autoload": {
"psr-4": {
"oat\\taoBlueprints\\": ""
}
}
}