Skip to content

ci: add minio service #5

ci: add minio service

ci: add minio service #5

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
permissions:
contents: write
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ 8.2, 8.3 ]
laravel: [ 10.* ]
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
services:
minio:
image: lazybit/minio
ports:
- '9000:9000'
env:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: password
options: --name=minio --health-cmd "curl http://localhost:9000/minio/health/live"
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Get composer cache directory path
id: composercache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer
uses: actions/cache@v3
with:
path: ${{ steps.composercache.outputs.dir }}
key: dependencies-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
coverage: none
- name: Install dependencies
run: |
composer require "illuminate/contracts:${{ matrix.laravel }}" --no-interaction --no-progress --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute the tests
run: ./vendor/bin/pest --compact