-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nicolas Debrigode
committed
Jan 19, 2024
1 parent
5716e03
commit 029b503
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Rector | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install PHP with extensions | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
coverage: none | ||
#extensions: intl | ||
php-version: '8.3' | ||
tools: composer | ||
|
||
- name: Determine composer cache directory | ||
id: composer-cache | ||
run: echo "directory=$(composer config cache-dir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache dependencies installed with composer | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.directory }} | ||
key: composer-${{ runner.os }}-${{ hashFiles('composer.*') }} | ||
restore-keys: composer-${{ runner.os }}-composer- | ||
|
||
- name: Install dependencies | ||
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | ||
|
||
- name: Run rector | ||
run: vendor/bin/rector process --dry-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Twigcs | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install PHP with extensions | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
coverage: none | ||
#extensions: intl | ||
php-version: '8.3' | ||
tools: composer | ||
|
||
- name: Determine composer cache directory | ||
id: composer-cache | ||
run: echo "directory=$(composer config cache-dir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache dependencies installed with composer | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.directory }} | ||
key: composer-${{ runner.os }}-${{ hashFiles('composer.*') }} | ||
restore-keys: composer-${{ runner.os }}-composer- | ||
|
||
- name: Install dependencies | ||
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | ||
|
||
- name: Run twigcs | ||
run: vendor/bin/twigcs --config .twig_cs.dist.php |