Delete .env #3
Workflow file for this run
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: Codestyle and Unittest | |
on: | |
push: | |
branches: | |
- '*' | |
- '!master' | |
paths: | |
- "**.php" | |
pull_request: | |
jobs: | |
phplint: | |
name: PHP Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
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: Run PHP Linter | |
run: composer run-script phplint | |
phpstan: | |
name: PHP Stan | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
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: Run PHP Stan | |
run: composer run-script phpstan | |
phpcs: | |
name: PHP CodeSniffer | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
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: Run PHP Codesniffer | |
run: composer run-script phpcs | |
phpunit: | |
name: PHP Unit Test | |
needs: | |
- phplint | |
- phpstan | |
- phpcs | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
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: Run PHP Unit Test | |
run: composer run-script unittest | |
phpfunctional: | |
name: PHP Functional Test | |
needs: | |
- phplint | |
- phpstan | |
- phpcs | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Install PHP with extensions. | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: pdo, pdo_sqlite | |
ini-values: date.timezone='UTC' | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
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: Run PHP Unit Test | |
run: composer run-script functionaltest |