doc: Add banner on the README #125
Workflow file for this run
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
name: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
php: | |
name: PHP ${{ matrix.php }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.0', '8.1', '8.2'] | |
env: | |
SYMFONY_ARGS: --no-tls | |
COMPOSER_ARGS: --prefer-dist | |
DOCKER_INTERACTIVE_ARGS: -t | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
ini-values: date.timezone=UTC | |
- name: Set project php-version | |
run: | | |
echo ${{ matrix.php }} > .php-version | |
- name: Install symfony CLI | |
run: | | |
curl https://get.symfony.com/cli/installer | bash | |
echo "${HOME}/.symfony5/bin" >> $GITHUB_PATH | |
- uses: actions/cache@v3 | |
id: cache-composer | |
with: | |
path: /home/runner/.composer/cache | |
key: composer2-php:${{ matrix.php }}-${{ github.sha }} | |
restore-keys: composer2-php:${{ matrix.php }}- | |
- run: mkdir -p /home/runner/{.composer/cache,.config/composer} | |
if: steps.cache-composer.outputs.cache-hit != 'true' | |
- name: Composer | |
run: sudo composer self-update | |
- name: Composer Github Auth | |
run: composer config -g github-oauth.github.com ${{ github.token }} | |
- run: make install | |
- run: make sylius.fixtures.local | |
- run: make test.composer | |
- run: make test.phpcs | |
- run: make test.phpstan | |
- run: make test.phpmd | |
- run: make test.phpspec | |
- run: make test.yaml | |
- run: make test.twig | |
- run: make test.schema | |
- run: make test.container |