Skip to content

Commit

Permalink
Enable GitHub Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rimas-kudelis committed Oct 2, 2023
1 parent 9e0cfe4 commit 58d7103
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
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: ~

jobs:
tests:
runs-on: ubuntu-20.04

name: "PHP ${{ matrix.php }}"

timeout-minutes: 50

strategy:
fail-fast: false
matrix:
php: ["7.4", "8.1", "8.2"]

steps:
-
uses: actions/checkout@v2

-
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: 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: Install PHP dependencies
run: composer install --no-interaction

-
name: Validate composer.json
run: composer validate --ansi --strict --no-check-publish

-
name: Check coding standard
run: vendor/bin/phpcs

-
name: Run PHPSpec
run: vendor/bin/phpspec run --ansi -f progress --no-interaction

0 comments on commit 58d7103

Please sign in to comment.