Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

ci: support ECS #3

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
pull_request:

jobs:
security:
uses: dvsa/.github/.github/workflows/php-security.yml@main
secrets:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

static-analysis:
uses: dvsa/.github/.github/workflows/php-static.yml@main
with:
php-version: '7.4'

tests:
uses: dvsa/.github/.github/workflows/php-tests.yml@main
with:
php-versions: "[\"7.4\"]"
fail-fast: false
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ nbproject
.settings
vendor/
test/coverage-report
config/autoload/*.php
.sublime-project
.sass-cache/
public/static
Expand Down
18 changes: 4 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,10 @@
{
"name": "olcs/olcs-selfserve",
"description": "OLCS Self Service Web Site",
"repositories": [
{
"packagist": false
},
{
"url": "https://nexus.olcs.dev-dvsacloud.uk/repository/OLCS",
"type": "composer"
},
{
"url": "https://nexus.olcs.dev-dvsacloud.uk/repository/Packagist-Proxy",
"type": "composer"
}
],
"require": {
"php": ">=7.4",
"dvsa/laminas-config-cloud-parameters": "^0.1.0",
"aws/aws-sdk-php": "^3.286",
"dvsa/laminas-config-cloud-parameters": "dev-add-support-for-parameter-casts",
"olcs/olcs-frontend-deps": "~4.206.0",
"olcs/olcs-laminas": "~2.5.0"
},
Expand All @@ -36,6 +24,8 @@
"Common\\": "vendor/olcs/olcs-common/Common/src/Common"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"secure-http": false,
Expand Down
Loading
Loading