Skip to content

Add deprecations ignore in other way #23

Add deprecations ignore in other way

Add deprecations ignore in other way #23

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions:
- 8.1
- 8.2
- 8.3
- 8.4
name: PHP ${{ matrix.php-versions }} test
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9.6
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --dev
- run: composer check
- run: phpunit
env:
DATABOX_LOGIN: ${{ secrets.DATABOX_LOGIN }}
DATABOX_PASSWORD: ${{ secrets.DATABOX_PASSWORD }}
DATABOX_PRODUCTION: ${{ secrets.DATABOX_PRODUCTION }}