Bump laravel/sail from 1.38.0 to 1.39.1 #837
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
- push | |
jobs: | |
test: | |
strategy: | |
matrix: | |
operating-system: | |
- ubuntu-latest | |
php-version: | |
- '8.3' | |
- '8.4' | |
name: php ${{ matrix.php-version }} on ${{ matrix.operating-system }} | |
services: | |
mariadb: | |
image: mariadb:latest | |
env: | |
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: yes | |
MARIADB_DATABASE: laravel | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mariadb-admin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: bcmath, calendar, ctype, fileinfo, json, mbstring, openssl, pdo, tokenizer, xml | |
coverage: xdebug | |
- name: Prepare the environment | |
run: cp .env.example .env | |
- name: Setup APP locale for testing | |
run: sed -i -e "s/^APP_LOCALE=en/APP_LOCALE=de/" .env | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Setup composer cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install composer dependencies | |
env: | |
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} | |
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Generate application key | |
run: php artisan key:generate | |
- name: Run tests | |
run: vendor/bin/pest --coverage-clover coverage.xml | |
env: | |
DB_CONNECTION: mariadb | |
DB_PORT: ${{ job.services.mariadb.ports['3306'] }} | |
DB_USERNAME: root | |
DB_DATABASE: laravel | |
DB_PASSWORD: null | |
- name: Upload coverage | |
continue-on-error: true | |
if: matrix.php-version == '8.3' | |
uses: paambaati/codeclimate-action@v9 | |
env: | |
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} | |
with: | |
coverageLocations: ${{github.workspace}}/coverage.xml:clover |