Skip to content

Bump actions/checkout from 2 to 4 #60

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #60

name: "Continuous Integration"
on:
- push
- pull_request
env:
SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT: "1"
jobs:
tests:
name: "CI"
runs-on: ${{ matrix.os }}
strategy:
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
- "8.4"
os: [ubuntu-latest]
include:
- php-version: "8.3"
os: windows-latest
steps:
- uses: "actions/checkout@v4"
- uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- uses: "ramsey/composer-install@v3"
with:
dependency-versions: highest
- name: "Run tests"
run: "vendor/bin/simple-phpunit --verbose"