123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- name: Test
- on:
- # Run on all pushes and on all pull requests.
- push:
- pull_request:
- # Allow manually triggering the workflow.
- workflow_dispatch:
- jobs:
- test:
- runs-on: ubuntu-latest
- strategy:
- # Keys:
- # - experimental: Whether the build is "allowed to fail".
- matrix:
- php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
- experimental: [false]
- include:
- # Nightly.
- - php: '8.3'
- experimental: true
- name: "PHP: ${{ matrix.php }}"
- continue-on-error: ${{ matrix.experimental }}
- steps:
- - name: Checkout code
- uses: actions/checkout@v3
- - name: Install PHP
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php }}
- coverage: none
- tools: phive
- - name: Install java
- uses: actions/setup-java@v3
- with:
- java-version: 11
- distribution: 'zulu'
- - name: Install tools
- run: ant install-tools
- - name: Generate Autoloader
- run: ant generate-autoloader
- - name: Run unit tests
- run: ant test
|