-
Notifications
You must be signed in to change notification settings - Fork 2
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
e6a6676
commit 089e296
Showing
1 changed file
with
49 additions
and
54 deletions.
There are no files selected for viewing
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,69 +1,64 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "*.md" | ||
pull_request: | ||
paths-ignore: | ||
- "*.md" | ||
release: | ||
types: [created] | ||
schedule: | ||
- | ||
cron: "0 1 * * 6" # Run at 1am every Saturday | ||
workflow_dispatch: ~ | ||
push: | ||
paths-ignore: | ||
- "*.md" | ||
pull_request: | ||
paths-ignore: | ||
- "*.md" | ||
release: | ||
types: [created] | ||
schedule: | ||
- | ||
cron: "0 1 * * 6" # Run at 1am every Saturday | ||
workflow_dispatch: ~ | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-20.04 | ||
tests: | ||
runs-on: ubuntu-20.04 | ||
|
||
name: "PHP ${{ matrix.php }}" | ||
name: "PHP ${{ matrix.php }}" | ||
|
||
timeout-minutes: 50 | ||
timeout-minutes: 50 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ["7.4", "8.1", "8.2"] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ["7.4", "8.1", "8.2"] | ||
|
||
steps: | ||
- | ||
uses: actions/checkout@v2 | ||
steps: | ||
- | ||
uses: actions/checkout@v3 | ||
|
||
- | ||
name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
coverage: none | ||
- | ||
name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
coverage: none | ||
|
||
- | ||
name: Get Composer cache directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
- | ||
name: Validate composer.json | ||
run: composer validate --ansi --strict | ||
|
||
- | ||
name: Cache Composer | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php-${{ matrix.php }}-composer- | ||
- | ||
name: Cache Composer packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.json **/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php-${{ matrix.php }}- | ||
- | ||
name: Install PHP dependencies | ||
run: composer install --no-interaction | ||
- | ||
name: Install PHP dependencies | ||
run: composer install --prefer-dist --no-interaction | ||
|
||
- | ||
name: Validate composer.json | ||
run: composer validate --ansi --strict --no-check-publish | ||
- | ||
name: Check coding standard | ||
run: vendor/bin/phpcs --colors | ||
|
||
- | ||
name: Check coding standard | ||
run: vendor/bin/phpcs | ||
|
||
- | ||
name: Run PHPSpec | ||
run: vendor/bin/phpspec run --ansi -f progress --no-interaction | ||
- | ||
name: Run PHPSpec | ||
run: vendor/bin/phpspec run --ansi -f progress --no-interaction |