Skip to content

Commit

Permalink
Move dev stability testing to weekly cronjob
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Feb 21, 2021
1 parent 1b157ac commit 8e77989
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
- symfony-require: "4.4.*"
dependencies: "highest"
php-version: "7.3"
stability: "dev"
symfony-deprecations-helper: "weak"

# Test against latest Symfony 5.2 dev
- symfony-require: "5.2.*"
dependencies: "highest"
php-version: "7.3"
stability: "dev"
symfony-deprecations-helper: "weak"

- php-version: "8.0"
dependencies: "highest"
Expand Down
76 changes: 76 additions & 0 deletions .github/workflows/test-dev-stability.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@

name: "Continuous Integration"

on:
schedule:
- cron: "0 0 * * 0"

jobs:
phpunit:
name: "PHPUnit"
runs-on: "ubuntu-20.04"
env:
SYMFONY_REQUIRE: ${{matrix.symfony-require}}
SYMFONY_DEPRECATIONS_HELPER: ${{matrix.symfony-deprecations-helper}}

strategy:
fail-fast: false
matrix:
php-version:
- "7.1"
- "7.2"
- "7.3"
- "7.4"
dependencies:
- "highest"
stability:
- "stable"
symfony-require:
- ""
symfony-deprecations-helper:
- ""
include:
# Test against latest Symfony 4.4 dev
- symfony-require: "4.4.*"
dependencies: "highest"
php-version: "7.3"
stability: "dev"

# Test against latest Symfony 5.2 dev
- symfony-require: "5.2.*"
dependencies: "highest"
php-version: "7.3"
stability: "dev"

- php-version: "8.0"
dependencies: "highest"
stability: "dev"

steps:
- name: "Checkout"
uses: "actions/checkout@v2"
with:
fetch-depth: 2

- name: "Install PHP with PCOV"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
ini-values: "zend.assertions=1"
extensions: "pdo_sqlite"

- name: "Globally install symfony/flex"
run: "composer global require --no-progress --no-scripts --no-plugins symfony/flex"

- name: "Require symfony/messenger"
run: "composer require --dev symfony/messenger --no-update"
if: "${{ startsWith(matrix.symfony-require, '4.') }}"

- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist"

- name: "Run PHPUnit"
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"

0 comments on commit 8e77989

Please sign in to comment.