Upgraded pecl extensions #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- '**' | |
# tags: | |
# - 'v*' | |
pull_request: | |
jobs: | |
build: | |
name: "PHP: ${{ matrix.php_version }}, OS: ${{ matrix.os_version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php_version: ["8.1", "8.2", "8.3"] | |
os_version: ["alpine3.18", "bookworm"] | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Build | |
run: make build PHP_V=${{ matrix.php_version }} OS_V=${{ matrix.os_version }} | |
- | |
name: Test version | |
run: make test-version PHP_V=${{ matrix.php_version }} OS_V=${{ matrix.os_version }} | |
- | |
name: Test module | |
run: make test-module PHP_V=${{ matrix.php_version }} OS_V=${{ matrix.os_version }} | |
- | |
name: Test info | |
run: make test-info PHP_V=${{ matrix.php_version }} OS_V=${{ matrix.os_version }} | |
- | |
name: Test tmp files | |
run: make test-tmp-files PHP_V=${{ matrix.php_version }} OS_V=${{ matrix.os_version }} |