We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a15bf48 commit 6315ebcCopy full SHA for 6315ebc
.github/workflows/ci.yml
@@ -4,11 +4,23 @@ on: push
4
5
jobs:
6
run:
7
+ name: CI on PHP ${{ matrix.php-version }}
8
runs-on: ubuntu-22.04
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ php-version: [ "7.4", "8.0", "8.1", "8.2" ]
13
steps:
14
- uses: actions/checkout@v3
15
with:
16
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
24
- name: Build secp256k1 and PHP extension
25
run: |
26
make secp256k1 ext
0 commit comments