-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Remove PHP versions from GitHub Actions, fix the documentation link #26
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- '*.*' | ||
pull_request: null | ||
|
||
Comment on lines
1
to
6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The removal of the PHP version configuration is not directly shown, but its absence could lead to the workflow running on the default PHP version provided by the Consider specifying the PHP version explicitly or ensuring the default version meets the project's needs. |
||
|
@@ -13,5 +12,3 @@ jobs: | |
with: | ||
os: >- | ||
['ubuntu-latest'] | ||
php: >- | ||
['8.1'] |
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.
The branch trigger has been updated to
'*.*'
, which might not behave as intended if the goal was to trigger on all branches. This pattern matches branches with a dot in their names, potentially excluding branches named without dots, such asmain
ordevelop
.Consider using
'**'
to include all branches if that's the intended behavior.