Skip to content

🔨 Adding new on demand country and language. #4

🔨 Adding new on demand country and language.

🔨 Adding new on demand country and language. #4

Workflow file for this run

name: php
on:
push:
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.2]
dependency-version: [prefer-stable]
name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Run tests
run: composer test