mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-24 19:19:06 +00:00
7cd99dbbac
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
960 B
YAML
47 lines
960 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- php5.x-master
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 17 * * *'
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version:
|
|
- '8.0'
|
|
- '8.1'
|
|
- '8.2'
|
|
- '8.3'
|
|
- '8.4'
|
|
future-release: [false]
|
|
include:
|
|
- php-version: '8.5'
|
|
future-release: true
|
|
fail-fast: false
|
|
name: PHP ${{ matrix.php-version }}
|
|
continue-on-error: ${{ matrix.future-release }}
|
|
|
|
steps:
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Test
|
|
run: bash tests/run.sh
|
|
env:
|
|
CI_PHP_VERSION: ${{ matrix.php-version }}
|
|
CI_PHP_FUTURE_RELEASE: ${{ matrix.future-release }}
|