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 61b806f commit ee213d9Copy full SHA for ee213d9
.github/workflows/ci.yml
@@ -31,6 +31,17 @@ jobs:
31
uses: shivammathur/setup-php@v2
32
with:
33
php-version: ${{matrix.version}}
34
+ - name: Checkout "php/php-src"
35
+ uses: actions/checkout@v3
36
+ with:
37
+ repository: php/php-src
38
+ ref: master
39
+ path: php-src
40
+ - name: Verify headers
41
+ if: "${{ matrix.version >= '8.0' }}"
42
+ run: |
43
+ HEADERS_IN_SYNC=$(php php-src/build/gen_stub.php --replace-methodsynopses .)
44
+ if [ ! -z $HEADERS_IN_SYNC ]; then echo 'Headers are not in sync with "ibm_db2.stub.php".' && exit 1; fi;
45
- name: phpize
46
run: phpize
47
- name: configure
0 commit comments