Skip to content

[Test Rector] Upgrade to PHP 8.3 #87

[Test Rector] Upgrade to PHP 8.3

[Test Rector] Upgrade to PHP 8.3 #87

Workflow file for this run

name: "[CI] Test"
on:
push:
branches:
- main
pull_request:
env:
GOTEO_DATABASE_URL: "mysql://goteo:goteo@mariadb:3306/goteo?serverVersion=10.2"
OAUTH_DATABASE_URL: "mysql://goteo:goteo@mariadb_oauth:3306/goteo_oauth?serverVersion=10.2"
jobs:
test-report:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php: [ '8.0', '8.1', '8.2', '8.3' ]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install NPM packages
run: npm install
- name: Setup PHP
uses: nanasess/setup-php@master
with:
php-version: ${{ matrix.php }}
- name: Run Composer Install
run: composer install --no-interaction
- name: Run PHPUnit tests
run: bin/phpunit