You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# push: TODO P3 No tests on push because it causes an unresolved bug (no space left on device). This Smell a race condition.
6
+
7
+
jobs:
8
+
9
+
integration:
10
+
name: Integration
11
+
runs-on: ubuntu-latest
12
+
13
+
strategy:
14
+
matrix:
15
+
php: ['7.2', '7.3', '7.4']
16
+
# TODO P2 PHP 8 Compatibility: Fix: Error: Class "Memcached" not found (https://github.com/crowdsecurity/php-cs-bouncer/runs/1491476055?check_suite_focus=true)
17
+
18
+
services:
19
+
redis:
20
+
image: redis:6.0.0
21
+
ports:
22
+
- 6379:6379
23
+
memcached:
24
+
image: memcached:1.6.5
25
+
ports:
26
+
- 11211:11211
27
+
28
+
steps:
29
+
- name: Checkout
30
+
uses: actions/checkout@v2
31
+
32
+
# In this step, this action saves a list of existing images,
33
+
# the cache is created without them in the post run.
0 commit comments