Skip to content

⬆️ ci(deps): bump docker/setup-buildx-action from 2 to 3 in /.github/workflows #29

⬆️ ci(deps): bump docker/setup-buildx-action from 2 to 3 in /.github/workflows

⬆️ ci(deps): bump docker/setup-buildx-action from 2 to 3 in /.github/workflows #29

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unit_tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 8.3 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: xdebug
- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist
- name: Run tests
run: composer run test -- --coverage-text
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage