Commit ecea93e 1 parent edb4022 commit ecea93e Copy full SHA for ecea93e
File tree 4 files changed +1986
-1135
lines changed
4 files changed +1986
-1135
lines changed Original file line number Diff line number Diff line change
1
+ name : Tasks
2
+
3
+ on :
4
+ push :
5
+ branches : " *"
6
+ schedule :
7
+ - cron : ' 0 0 * * *'
8
+
9
+ jobs :
10
+ lint-php :
11
+ name : " php: ${{ matrix.php }} ${{ matrix.prefer-lowest }}"
12
+ runs-on : ubuntu-latest
13
+ strategy :
14
+ fail-fast : false
15
+ matrix :
16
+ php : [ '8.1', '8.2', '8.3' ]
17
+ prefer-lowest : ['--prefer-lowest', '']
18
+ steps :
19
+ - name : Setup PHP with PECL extension
20
+ uses : shivammathur/setup-php@v2
21
+ with :
22
+ php-version : ${{ matrix.php }}
23
+ - uses : actions/checkout@v2
24
+ - name : Get Composer Cache Directory
25
+ id : composer-cache
26
+ run : |
27
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
28
+ - uses : actions/cache@v3
29
+ with :
30
+ path : ${{ steps.composer-cache.outputs.dir }}
31
+ key : ${{ runner.os }}-${{ matrix.php }}-${{ matrix.prefer-lowest }}-composer-${{ hashFiles('**/composer.lock') }}
32
+ restore-keys : |
33
+ ${{ runner.os }}-${{ matrix.php }}-${{ matrix.prefer-lowest }}-composer
34
+ - run : composer update ${{ matrix.prefer-lowest }} --no-interaction --no-progress
35
+ - run : ./vendor/bin/grumphp run --ansi
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ you will get asked for each file that has changes if you want to apply them.
17
17
[ ![ asciicast] ( https://asciinema.org/a/671145.png )] ( https://asciinema.org/a/671145 )
18
18
19
19
20
-
21
20
# with ♥️ from anders und sehr GmbH
22
21
23
22
> If something did not work 😮
Original file line number Diff line number Diff line change 11
11
],
12
12
"require" : {
13
13
"php" : " ~8.1.0 || ~8.2.0 || ~8.3.0" ,
14
- "rector/rector" : " ^1.2" ,
15
- "symfony/console" : " ^7.1"
14
+ "rector/rector" : " ^1.2.2 " ,
15
+ "symfony/console" : " ^6.4 || ^ 7.1"
16
16
},
17
17
"require-dev" : {
18
- "pluswerk/grumphp-config" : " ^7.0"
18
+ "pluswerk/grumphp-config" : " ^7.0.4" ,
19
+ "roave/security-advisories" : " dev-latest"
19
20
},
20
21
"autoload" : {
21
22
"psr-4" : {
You can’t perform that action at this time.
0 commit comments