Skip to content

Commit bf5efb5

Browse files
committed
✨ add github action
1 parent 910356a commit bf5efb5

3 files changed

Lines changed: 24 additions & 38 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Run grumphp with different versions
2+
on: [push]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
php:
10+
- '8.1'
11+
- '8.2'
12+
container:
13+
image: kanti/buildy:${{ matrix.php }}
14+
steps:
15+
- uses: actions/checkout@v2
16+
- run: composer install --no-progress --no-scripts -n
17+
- run: ./vendor/bin/grumphp run

.travis.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"authors": [
77
{
88
"name": "Matthias Vogel",
9-
"email": "matthias.vogel@pluswerk.ag",
10-
"homepage": "http://pluswerk.ag"
9+
"email": "m.vogel@andersundsehr.com",
10+
"homepage": "https://www.andersundsehr.com"
1111
}
1212
],
1313
"support": {
@@ -26,5 +26,10 @@
2626
},
2727
"require-dev": {
2828
"squizlabs/php_codesniffer": ">=3.5.0 <4.0.0"
29+
},
30+
"config": {
31+
"allow-plugins": {
32+
"phpro/grumphp": true
33+
}
2934
}
3035
}

0 commit comments

Comments
 (0)