-
Notifications
You must be signed in to change notification settings - Fork 1
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
Revive CI #15
Revive CI #15
Conversation
aced534
to
0c6fcd9
Compare
0c6fcd9
to
b97a926
Compare
46195b0
to
424b58b
Compare
- name: Check dependencies | ||
continue-on-error: true | ||
run: vendor/bin/composer-dependency-analyser |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've already spent too much time on figuring out why the configuration wasn't working, so I'm skipping it for now. In general, as we install all deps we're getting false-positives. We need to extract it to a separate job, download only non-dev deps, and then run it.
->ignoreErrorsOnPackage('sylius/sylius', [ErrorType::DEV_DEPENDENCY_IN_PROD]) | ||
->ignoreErrorsOnPackage('sylius/core-bundle', [ErrorType::UNUSED_DEPENDENCY]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the same reason as mentioned in ci.yaml
; it should be removed once fixed there;
@@ -5,8 +5,7 @@ | |||
"license": "MIT", | |||
"autoload": { | |||
"psr-4": { | |||
"CommerceWeavers\\SyliusTpayPlugin\\": "src/", | |||
"Tests\\CommerceWeavers\\SyliusTpayPlugin\\Behat\\": "tests/Behat" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was unused
|
||
final class CommerceWeaversSyliusTpayPlugin extends AbstractBundle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It wasn't present in Symfony 5.4 :<
closes #11