Skip to content

Commit caf429c

Browse files
Merge pull request #76 from julienloizelet/feature/72-gregwar-captcha-fix-with-0-15-0-lib
Feature/72 gregwar captcha fix with 0 15 0 lib
2 parents dae108d + 7575800 commit caf429c

File tree

4 files changed

+123
-104
lines changed

4 files changed

+123
-104
lines changed

.github/workflows/end-to-end-test-suite.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,34 @@
11
name: End-to-end test suite
22
on:
33
push:
4+
paths-ignore:
5+
- '**.md'
46
pull_request:
57
branches:
68
- main
9+
paths-ignore:
10+
- '**.md'
711
workflow_dispatch:
812

913
jobs:
1014
end-to-end-test-suite:
1115
strategy:
1216
fail-fast: false
1317
matrix:
14-
wp-version: [ 4.9, 5.0.1, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9 ]
15-
php-version: [ 7.2, 7.4 ]
18+
wp-version: [ "4.9", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7", "5.8", "5.9" ]
19+
php-version: [ "7.2", "7.4", "8.0" ]
1620
exclude:
17-
- { php-version: 7.4, wp-version: 4.9 }
18-
- { php-version: 7.4, wp-version: 5.0.1 }
19-
- { php-version: 7.4, wp-version: 5.1 }
20-
- { php-version: 7.4, wp-version: 5.2 }
21+
- { php-version: "7.4", wp-version: "4.9" }
22+
- { php-version: "7.4", wp-version: "5.0" }
23+
- { php-version: "7.4", wp-version: "5.1" }
24+
- { php-version: "7.4", wp-version: "5.2" }
25+
- { php-version: "8.0", wp-version: "4.9" }
26+
- { php-version: "8.0", wp-version: "5.0" }
27+
- { php-version: "8.0", wp-version: "5.1" }
28+
- { php-version: "8.0", wp-version: "5.2" }
29+
- { php-version: "8.0", wp-version: "5.3" }
30+
- { php-version: "8.0", wp-version: "5.4" }
31+
- { php-version: "8.0", wp-version: "5.5" }
2132

2233
name: End-to-end test suite
2334
runs-on: ubuntu-latest
@@ -81,7 +92,7 @@ jobs:
8192

8293
- name: Install ${{ env.EXTENSION_NAME }} with composer dependencies
8394
run: |
84-
ddev composer install --working-dir ./my-own-modules/${{ env.EXTENSION_PATH }}
95+
ddev composer install --no-dev --prefer-dist --optimize-autoloader --working-dir ./my-own-modules/${{ env.EXTENSION_PATH }}
8596
8697
- name: Prepare for playwright test
8798
run: |

composer.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@
88
"email": "info@crowdsec.net"
99
}
1010
],
11+
"config" : {
12+
"platform": {
13+
"php": "7.2.5"
14+
}
15+
},
1116
"require": {
12-
"php": "^7.2",
13-
"crowdsec/bouncer": "0.14.0",
17+
"crowdsec/bouncer": "0.15.0",
1418
"symfony/polyfill-mbstring": "1.20.0",
1519
"symfony/service-contracts": "2.4.1"
1620
},

0 commit comments

Comments
 (0)