-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2cecb2b
commit 4069de8
Showing
969 changed files
with
84,514 additions
and
5,746 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,23 @@ | ||
name: Bare Run on various PHP versions | ||
name: Bare Run | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
on: [pull_request, push] | ||
|
||
jobs: | ||
bare_run: | ||
runs-on: ubuntu-latest | ||
bare_run: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php_version: ['7.2', '7.3', '7.4', '8.0'] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php_version: ['7.2', '7.3', '7.4', '8.0'] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- | ||
id: check_tag | ||
run: | | ||
MESSAGE=$(git tag -l --format='%(contents)' $(git describe --tags $(git rev-list --tags --max-count=1))) | ||
if echo $MESSAGE | grep -q "PHP 7.2 downgraded"; then | ||
echo "NEEDED_DOWNGRADE=1" >> $GITHUB_ENV | ||
else | ||
echo "NEEDED_DOWNGRADE=0" >> $GITHUB_ENV | ||
fi | ||
- | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php_version }} | ||
coverage: none | ||
|
||
- | ||
name: Setup PHP And Run Monorepo | ||
if: env.NEEDED_DOWNGRADE == '1' | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php_version }} | ||
coverage: none | ||
- | ||
if: env.NEEDED_DOWNGRADE == '1' | ||
run: php bin/monorepo-builder list --ansi | ||
- run: php bin/monorepo-builder list --ansi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
<?php | ||
namespace MonorepoBuilderPrefix202310; | ||
|
||
require_once __DIR__ . '/monorepo-builder.php'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.