mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-20 19:01:51 +00:00
43138d2f3d
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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>
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- php5.x-master
|
|
paths-ignore:
|
|
- "scripts/make_release_requirements.json"
|
|
pull_request:
|
|
paths-ignore:
|
|
- "scripts/make_release_requirements.json"
|
|
schedule:
|
|
- cron: '0 17 * * *'
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version:
|
|
- '8.0'
|
|
- '8.1'
|
|
- '8.2'
|
|
- '8.3'
|
|
- '8.4'
|
|
- '8.5'
|
|
future-release: [false]
|
|
include:
|
|
- php-version: '8.6'
|
|
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@v7
|
|
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 }}
|