Skip to content

Bump shivammathur/setup-php from 2.37.1 to 2.37.2 #305

Bump shivammathur/setup-php from 2.37.1 to 2.37.2

Bump shivammathur/setup-php from 2.37.1 to 2.37.2 #305

name: "Continuous Integration"
on:
- push
- pull_request
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: "CI"
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
- "8.4"
experimental: [false]
os: [ubuntu-latest]
include:
- php-version: "8.3"
os: windows-latest
experimental: false
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: "${{ matrix.php-version }}"
coverage: none
- uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
with:
dependency-versions: highest
- name: Run tests
run: |
vendor/bin/phpunit
vendor/bin/phpunit --testsuite phpstan