Skip to content

Commit 6315ebc

Browse files
committed
test more PHP versions
1 parent a15bf48 commit 6315ebc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,23 @@ on: push
44

55
jobs:
66
run:
7+
name: CI on PHP ${{ matrix.php-version }}
78
runs-on: ubuntu-22.04
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
php-version: [ "7.4", "8.0", "8.1", "8.2" ]
813
steps:
914
- uses: actions/checkout@v3
1015
with:
1116
submodules: recursive
17+
- uses: shivammathur/setup-php@verbose
18+
env:
19+
debug: true
20+
update: true
21+
with:
22+
php-version: ${{ matrix.php-version }}
23+
ini-values: opcache.enable=1, opcache.enable_cli=1, opcache.protect_memory=1
1224
- name: Build secp256k1 and PHP extension
1325
run: |
1426
make secp256k1 ext

0 commit comments

Comments
 (0)