Skip to content

v1.0.0

v1.0.0 #24

Workflow file for this run

name: tests
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
tests:
name: Tests with php8.3
runs-on: ubuntu-latest
continue-on-error: false
services:
redis:
image: redis:latest
ports: 6379

Check failure on line 21 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 21, Col: 16): Unexpected value '6379'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup php
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: xdebug
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
- name: Prepare the application
run: php -r "copy('.env.testing', '.env');"
- name: Run PHPUnit tests with coverage results
run: vendor/bin/phpunit --coverage-clover ./tests/output/clover.xml