-
Notifications
You must be signed in to change notification settings - Fork 38
51 lines (50 loc) · 1.8 KB
/
behat.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
41
42
43
44
45
46
47
48
49
50
51
name: Behat Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
PORT_LDAP: 3389
PORT_LDAPS: 6363
LDAP_ADMIN_PASSWORD: ${{ secrets.LDAP_ADMIN_PASSWORD }}
LDAP_LOG_LEVEL: 0
strategy:
fail-fast: false
matrix:
php-version: ['8.0', '8.1', '8.2', '8.3', '8.4-rc']
wordpress-version: ['6.2', '6.3', '6.4', '6.5', '6.6']
name: Test on PHP ${{ matrix.php-version }}/WordPress ${{ matrix.wordpress-version }}
steps:
- uses: actions/checkout@v1
# - name: Docker Compose Pull
# run: docker compose pull
- name: Cache Docker images
id: docker-cache
uses: ScribeMD/[email protected]
with:
key:
docker-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.wordpress-version }}-${{ hashFiles('docker-compose.yml') }}
- name: Build the docker-compose stack
if: steps.docker-cache.outputs.cache-hit != 'true'
run: docker compose build --build-arg PHP_VERSION=${{ matrix.php-version }} --build-arg WORDPRESS_VERSION=${{ matrix.wordpress-version }} wp
- name: run the stack
run: docker compose -f docker-compose.yml up -d
- name: Check running containers
run: docker ps -a
- name: Check logs
run: docker compose logs openldap
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: phive
- name: install dependencies
run: composer install
- name: install behat
run: |
composer require --dev behat/behat
- name: run behat
run: docker compose exec wp bash -c "cd wp-content/plugins/authldap && ./vendor/bin/behat"
- name: Check logs
if: ${{ failure() }}
run: docker compose logs