We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 751236e commit 23db13dCopy full SHA for 23db13d
.github/workflows/ci.yaml
@@ -33,6 +33,31 @@ jobs:
33
- name: Run code style check
34
run: composer run-script check-cs -- --format=checkstyle | cs2pr
35
36
+ rector:
37
+ name: Run rector
38
+ runs-on: "ubuntu-22.04"
39
+ strategy:
40
+ matrix:
41
+ php:
42
+ - '8.3'
43
+ steps:
44
+ - uses: actions/checkout@v4
45
+
46
+ - name: Setup PHP Action
47
+ uses: shivammathur/setup-php@v2
48
+ with:
49
+ php-version: ${{ matrix.php }}
50
+ coverage: none
51
+ extensions: 'pdo_sqlite, gd'
52
+ tools: cs2pr
53
54
+ - uses: ramsey/composer-install@v3
55
56
+ dependency-versions: highest
57
58
+ - name: Run rector
59
+ run: vendor/bin/rector process --dry-run --ansi
60
61
tests:
62
name: Tests
63
runs-on: "ubuntu-22.04"
0 commit comments