Merge pull request #100 from OpenConext/feature/add-registration-bypa… #47
This file contains hidden or 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: test-integration | |
| on: [ push ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| php-versions: [ '8.2'] | |
| experimental: [false] | |
| include: | |
| - php-versions: '8.1' | |
| experimental: true | |
| - php-versions: '8.3' | |
| experimental: true | |
| - php-versions: '8.4' | |
| experimental: true | |
| timeout-minutes: 30 | |
| name: PHP ${{ matrix.php-versions }} on Ubuntu latest. Experimental == ${{ matrix.experimental }} | |
| steps: | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Install dependencies | |
| run: composer install | |
| continue-on-error: ${{ matrix.experimental }} | |
| - name: Run CI tests | |
| run: composer check | |
| continue-on-error: ${{ matrix.experimental }} | |
| - name: Output log files on failure | |
| if: failure() | |
| run: tail -2000 /var/log/syslog |