-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (36 loc) · 1.01 KB
/
ci.yml
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
name: CI Backend
on:
push:
branches:
- master
pull_request:
concurrency:
# Concurrency is only limited on pull requests. head_ref is only defined on PR triggers so otherwise it will use the random run id and always build all pushes.
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
phpunit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: [ "7.4", "8.0", "8.1", "8.2" ]
steps:
-
uses: actions/checkout@v3
-
name: Installing PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
-
name: Composer Install
run: composer install -o
-
name: Start test server
run: php -S 0.0.0.0:8091 ./tests/test-server.php > /dev/null 2>&1 &
-
name: PHPUnit
run: ./vendor/bin/phpunit -c ./tests/phpunit.xml.dist