Skip to content

Add GitHub workflow elifesciences/issues#9004 #1

Add GitHub workflow elifesciences/issues#9004

Add GitHub workflow elifesciences/issues#9004 #1

Workflow file for this run

name: CI Pipeline
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
push:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [7.1, 7.2, 7.3, 7.4]
task: ['test', 'test-lowest']
steps:
- uses: actions/checkout@v4
- name: Run tests
run: make PHP_VERSION=${{ matrix.php_version }} ${{ matrix.task }}
tests-future-versions:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [8.0, 8.1, 8.2, 8.3]
task: ['test', 'test-lowest']
steps:
- uses: actions/checkout@v4
- name: Run tests against all major versions of PHP
run: make PHP_VERSION=${{ matrix.php_version }} ${{ matrix.task }}
continue-on-error: true