Skip to content

Commit

Permalink
Merge pull request #172 from ghostwriter/feature/add-laminas-continuo…
Browse files Browse the repository at this point in the history
…us-integration-action

add continuous integration action
  • Loading branch information
Ocramius authored Nov 28, 2021
2 parents f4a0b35 + 9eeb599 commit 41da249
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 255 deletions.
59 changes: 0 additions & 59 deletions .github/workflows/coding-standards.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "Continuous Integration"

on:
pull_request:
push:
branches:
- '[0-9]+.[0-9]+.x'
- 'refs/pull/*'

jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@v1

qa:
name: QA Checks
needs: [matrix]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@v1
with:
job: ${{ matrix.job }}
78 changes: 0 additions & 78 deletions .github/workflows/mutation-tests.yml

This file was deleted.

59 changes: 0 additions & 59 deletions .github/workflows/phpunit.yml

This file was deleted.

59 changes: 0 additions & 59 deletions .github/workflows/psalm.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extensions": [
"bcmath"
]
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Release Automation

[![Build Status](https://github.com/laminas/automatic-releases/workflows/Continuous%20Integration/badge.svg)](https://github.com/laminas/automatic-releases/actions?query=workflow%3A"Continuous+Integration") [![Psalm coverage](https://shepherd.dev/github/laminas/automatic-releases/coverage.svg?)](https://shepherd.dev/github/laminas/automatic-releases)

This project is a [Github Action](https://github.com/features/actions) that allows
maintainers of open-source projects that follow [SemVer](https://semver.org/spec/v2.0.0.html)
to automate the automation of releases.
Expand Down

0 comments on commit 41da249

Please sign in to comment.