Skip to content

Commit

Permalink
Merge branch 'master' into feature/improve-RatioListCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
johanwilfer authored Jan 29, 2024
2 parents 99b53fb + f23eece commit 85254f0
Show file tree
Hide file tree
Showing 16 changed files with 172 additions and 161 deletions.
86 changes: 86 additions & 0 deletions .github/workflows/code_checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Code_Checks

on: ["push", "pull_request"]

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.2']
stability: [ prefer-stable ]
symfony-version: ['7.0.*']
include:
- php: '8.0'
symfony-version: 5.4.*
stability: prefer-lowest
- php: '8.0'
symfony-version: 5.4.*
stability: prefer-stable
- php: '8.1'
symfony-version: 6.0.*
stability: prefer-stable
- php: '8.2'
symfony-version: 7.0.*
stability: prefer-stable
- php: '8.3'
symfony-version: 7.0.*
stability: prefer-stable

name: PHP ${{ matrix.php }} - ${{ matrix.symfony-version }} - ${{ matrix.stability }}
steps:
# basically git clone
- uses: actions/checkout@v4

- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

# use PHP of specific version
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: pcov, curl
coverage: pcov

- name: Install dependencies
env:
SYMFONY_REQUIRE: ${{ matrix.symfony-version }}
run: |
composer global config --no-plugins allow-plugins.symfony/flex true
composer global require --no-progress --no-scripts --no-plugins symfony/flex
composer update --no-interaction --prefer-dist
vendor/bin/simple-phpunit install
- name: Execute tests
env:
SYMFONY_DEPRECATIONS_HELPER: 'weak'
run: vendor/bin/phpunit --coverage-text


cs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: none
- run: |
composer install --no-progress
composer require friendsofphp/php-cs-fixer "^3.48"
vendor/bin/php-cs-fixer
psalm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: none
- run: composer install --no-progress
- run: vendor/bin/psalm
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 85254f0

Please sign in to comment.