Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove locale path from default locale #18

Merged
merged 3 commits into from
Jul 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
wip
  • Loading branch information
jannescb committed Jul 17, 2023
commit 444fdd6f6e79d80ae444a8c3c4a86a7c0a48ff16
46 changes: 3 additions & 43 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0]
laravel: [7.*, 8.*]
php: [8.0]
laravel: [8.*]
stability: [prefer-lowest, prefer-stable]

name:
Expand Down Expand Up @@ -49,44 +49,4 @@ jobs:
composer update --${{ matrix.stability }} --prefer-dist --no-interaction

- name: Run PHP tests via PHPUnit
run: vendor/bin/phpunit
windows_tests:
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
php: [7.4]
laravel: [7.*]
stability: [prefer-stable]
include:
- laravel: 7.*
name: p ${{ matrix.php }} - l ${{ matrix.laravel }} - Windows
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key:
dependencies-laravel-${{ matrix.laravel }}-php-${{
matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions:
dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite,
bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
tools: composer:v2
coverage: none

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction

- name: Run PHP tests via PHPUnit
run: vendor/bin/phpunit
run: vendor/bin/phpunit
Loading