Skip to content

Commit

Permalink
TASK: Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Apr 24, 2024
1 parent 3b9611c commit 7cc3958
Showing 1 changed file with 0 additions and 70 deletions.
70 changes: 0 additions & 70 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -1,70 +0,0 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

strategy:
matrix:
php-versions: [ '8.2', '8.3' ]

runs-on: ubuntu-latest

services:
mysql:
image: mysql:latest
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: dcb
ports:
- 3306/tcp
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
postgres:
image: postgres:latest
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: password
POSTGRES_DB: dcb
ports:
- 5432/tcp
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3

steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: pdo_mysql, pdo_sqlite, pdo_pgsql

- name: Checkout code
uses: actions/checkout@v3

- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: Static Analysis (PHPStan)
run: composer run-script test:phpstan

- name: Static Analysis (Code Sniffer)
run: composer run-script test:cs

0 comments on commit 7cc3958

Please sign in to comment.