Skip to content

Commit

Permalink
Merge pull request #446 from dotkernel/issue-440
Browse files Browse the repository at this point in the history
Replaced annotations with attributes
  • Loading branch information
arhimede authored Jul 24, 2024
2 parents 00cbc71 + 0b86ce7 commit 7b62f24
Show file tree
Hide file tree
Showing 37 changed files with 304 additions and 459 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: "Continuous Integration"

on:
pull_request:
push:
branches:
tags:

jobs:
ci:
uses: laminas/workflow-continuous-integration/.github/workflows/[email protected]
47 changes: 0 additions & 47 deletions .github/workflows/cs-tests.yml

This file was deleted.

53 changes: 0 additions & 53 deletions .github/workflows/run-tests.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/static-analysis.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .laminas-ci/pre-run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
JOB=$3
PHP_VERSION=$4
COMMAND=$(echo "${JOB}" | jq -r '.command')

echo "Running pre-run $COMMAND"

if [[ ${COMMAND} =~ phpunit ]];then

apt-get install php"${PHP_VERSION}"-sqlite3

cp config/autoload/local.php.dist config/autoload/local.php
cp config/autoload/mail.local.php.dist config/autoload/mail.local.php
cp config/autoload/local.test.php.dist config/autoload/local.test.php

fi
Loading

0 comments on commit 7b62f24

Please sign in to comment.