Skip to content

Commit

Permalink
Sylius 1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Nov 21, 2023
1 parent 3018a9f commit 7ce7fac
Show file tree
Hide file tree
Showing 89 changed files with 923 additions and 1,178 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ behat.yml.dist export-ignore
ecs.php export-ignore
phpspec.yml.dist export-ignore
phpstan.neon export-ignore
phpstan-baseline.neon export-ignore
phpunit.xml.dist export-ignore
psalm.xml export-ignore
psalm-baseline.xml export-ignore
README.md export-ignore
198 changes: 0 additions & 198 deletions .github/workflows/build.yml

This file was deleted.

53 changes: 53 additions & 0 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: "Coding Standards"

on:
push:
branches-ignore:
- 'dependabot/**'
pull_request: ~
release:
types: [created]
workflow_dispatch: ~

jobs:
coding-standards:
runs-on: ubuntu-20.04

name: Coding Standards

steps:
-
uses: actions/checkout@v3

-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
extensions: intl
tools: composer:v2,flex
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@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
-
name: Install PHP dependencies
run: composer update --no-interaction
env:
SYMFONY_REQUIRE: "5.4.*"

-
name: Check coding standards
run: vendor/bin/ecs check
Loading

0 comments on commit 7ce7fac

Please sign in to comment.