wip #35
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: Run Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis:7.4 | |
ports: | |
- 6379:6379 | |
mysql: | |
image: mysql:8.0 | |
ports: | |
- 3306:3306 | |
env: | |
MYSQL_DATABASE: laravel | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
- name: Setup cache environment | |
id: extcache | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: '8.3' | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, gd, redis, igbinary, msgpack, lzf, zstd, lz4, memcached, gmp, :php-psr | |
key: extension-cache-v1 | |
- name: Cache extensions | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.extcache.outputs.dir }} | |
key: ${{ steps.extcache.outputs.key }} | |
restore-keys: ${{ steps.extcache.outputs.key }} | |
- name: Setup PHP and Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
tools: composer:v2 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, gd, redis, igbinary, msgpack, lzf, zstd, lz4, memcached, gmp, :php-psr | |
- name: Get Composer cache dir | |
id: composer-cache-dir | |
run: echo dir=$(composer config cache-files-dir) >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/[email protected] | |
with: | |
key: composer-cache-${{ hashFiles('**/composer.lock') }} | |
path: ${{ steps.composer-cache-dir.outputs.dir }} | |
restore-keys: composer-cache- | |
- name: Install Project Dependencies | |
run: composer install -q --no-interaction --no-progress | |
- name: Copy Environment File | |
run: cp .env.example .env | |
- name: Generate Application Key | |
run: php artisan key:generate | |
- name: Run Tests | |
run: php artisan test --compact |