Switch from Travis to GitHub Actions

This commit is contained in:
Kamil Kokot
2020-11-05 21:53:06 +01:00
parent 57f15c188a
commit 6fa6328545
3 changed files with 62 additions and 43 deletions

View File

@@ -46,16 +46,16 @@
"sort-packages": true
},
"scripts": {
"check": [
"composer validate --ansi --strict",
"@analyse"
"analyse": [
"@composer validate --ansi --strict",
"vendor/bin/ecs check --ansi --no-progress-bar src tests",
"vendor/bin/psalm src --no-progress"
],
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar src tests --fix"
],
"analyse": [
"vendor/bin/ecs check --ansi --no-progress-bar src tests",
"vendor/bin/psalm src --no-progress"
"test": [
"vendor/bin/behat -f progress --strict -vvv --no-interaction --colors"
]
},
"extra": {