-
-
Notifications
You must be signed in to change notification settings - Fork 365
41 lines (31 loc) · 919 Bytes
/
tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Tests
on:
pull_request: null
push:
branches:
- main
env:
# see https://github.com/composer/composer/issues/9368#issuecomment-718112361
COMPOSER_ROOT_VERSION: "dev-main"
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
php: ['8.1']
path:
- tests
- rules-tests
- packages-tests
name: PHP ${{ matrix.php }} tests for ${{ matrix.path }}
steps:
- uses: actions/checkout@v3
-
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- uses: "ramsey/composer-install@v2"
- run: vendor/bin/paratest ${{ matrix.path }} --colors