Skip to content

Commit c90c5ec

Browse files
committed
switch do github actions
1 parent e9fb3d7 commit c90c5ec

File tree

3 files changed

+33
-29
lines changed

3 files changed

+33
-29
lines changed

.github/workflows/qa.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: QA
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
push:
9+
branches:
10+
- master
11+
- v*
12+
13+
jobs:
14+
tests:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
19+
dependencies: ['--prefer-lowest', '']
20+
21+
name: PHP ${{ matrix.php }} ${{ matrix.dependencies }}
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: shivammathur/setup-php@v2
25+
with:
26+
php-version: ${{ matrix.php }}
27+
extensions: json, mbstring, tokenizer
28+
coverage: none
29+
30+
- run: composer update --no-progress ${{ matrix.dependecies }}
31+
- run: vendor/bin/phpstan analyse --configuration phpstan.neon --level max src
32+
- run: vendor/bin/tester -C tests

.travis.yml

-28
This file was deleted.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"tracy/tracy": "~2.4"
2828
},
2929
"require-dev": {
30-
"mockery/mockery": "~1.0",
30+
"mockery/mockery": "~1.3.3",
3131
"nette/tester": "~2.0",
3232
"phpstan/phpstan": "0.12.58"
3333
},

0 commit comments

Comments
 (0)