-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (47 loc) · 1.79 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.1', '8.2', '8.3', '8.4' ]
etcd-version: [ '3.3.27', '3.4.18', '3.5.2' ]
name: Run tests on PHP v${{ matrix.php-version }} with etcd v${{ matrix.etcd-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: grpc
- name: Install etcd
run: |
wget -q https://github.com/etcd-io/etcd/releases/download/v${{ matrix.etcd-version }}/etcd-v${{ matrix.etcd-version }}-linux-amd64.tar.gz
tar -xzf etcd-v${{ matrix.etcd-version }}-linux-amd64.tar.gz
sudo mv etcd-v${{ matrix.etcd-version }}-linux-amd64/etcd /usr/bin/etcd
if [ ! -e /var/lib/etcd ]; then
sudo mkdir /var/lib/etcd
fi
if [ ! -e /var/log/etcd ]; then
sudo mkdir /var/log/etcd
fi
sudo start-stop-daemon --start -b --exec /usr/bin/etcd
- name: Set composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Restore composer from cache
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install composer dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Run phpunit tests
run: vendor/bin/phpunit --testsuite tests --colors=always --testdox