Skip to content

Commit

Permalink
Remove Pest from workflow, for now at least
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Feb 19, 2024
1 parent 610a001 commit 75d6383
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,12 @@ jobs:
fail-fast: false
matrix:
actions:
- name: 'Pest Tests'
run: composer pest
- name: 'PHPStan'
run: composer phpstan
- name: 'Coding Standards'
run: composer fix-cs
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: password
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
env:
CRAFT_DB_DRIVER: mysql
CRAFT_DB_SERVER: 127.0.0.1
CRAFT_DB_PORT: 3306
CRAFT_DB_DATABASE: db
CRAFT_DB_USER: root
CRAFT_DB_PASSWORD: password
steps:
- uses: actions/checkout@v4
- name: Cache Composer dependencies
Expand All @@ -55,7 +38,4 @@ jobs:
tools: composer:v2
- name: Install Composer dependencies
run: composer install --no-interaction --no-ansi --no-progress
- name: Create MySQL database
run: |
mysql -e 'CREATE DATABASE IF NOT EXISTS db;'
- run: ${{ matrix.actions.run }}

0 comments on commit 75d6383

Please sign in to comment.