Skip to content

Commit e0a99b9

Browse files
authored
Merge pull request #253 from dotkernel/orm3
Orm3
2 parents 5f71c79 + 605bc18 commit e0a99b9

43 files changed

Lines changed: 331 additions & 717 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "Continuous Integration"
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
tags:
8+
9+
jobs:
10+
ci:
11+
uses: laminas/workflow-continuous-integration/.github/workflows/continuous-integration.yml@1.x

.github/workflows/cs-tests.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.github/workflows/run-tests.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/workflows/static-analysis.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

.laminas-ci/pre-run.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
JOB=$3
2+
PHP_VERSION=$4
3+
COMMAND=$(echo "${JOB}" | jq -r '.command')
4+
5+
echo "Running pre-run $COMMAND"
6+
7+
if [[ ${COMMAND} =~ phpunit ]];then
8+
9+
apt-get install php"${PHP_VERSION}"-sqlite3
10+
11+
cp config/autoload/local.php.dist config/autoload/local.php
12+
cp config/autoload/mail.local.php.dist config/autoload/mail.local.php
13+
cp config/autoload/local.test.php.dist config/autoload/local.test.php
14+
15+
echo 'running if'
16+
17+
fi

0 commit comments

Comments
 (0)