Skip to content

wip

wip #11

Workflow file for this run

name: CI
on:
push:
branches: [main, staging]
pull_request:
branches: [main, staging]
jobs:
checks:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: laravel_tests
MYSQL_ALLOW_EMPTY_PASSWORD: true
ports:
- 3306/tcp
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
extensions: xdebug
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist -vvv
- name: Generate key
run: php artisan key:generate
- name: Setup permissions
run: chmod -R 777 storage bootstrap/cache
- name: Run tests
timeout-minutes: 30
run: vendor/bin/pest
env:
DB_HOST: 127.0.0.1
DB_PORT: ${{ job.services.mysql.ports[3306] }}
DB_PASSWORD: ""
- name: Run duster
timeout-minutes: 10
uses: tighten/duster-action@v1
with:
args: fix
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Dusting
commit_user_name: GitHub Action
commit_user_email: [email protected]