Skip to content

Commit

Permalink
qa: adds GHA continuous integration workflow
Browse files Browse the repository at this point in the history
- Adds the laminas-continuous-integration GHA workflow.
- Adds .gitattributes to shape what is installed when installed via Packagist.
  • Loading branch information
weierophinney committed Nov 9, 2023
1 parent 2fcfc3f commit d774137
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/composer.lock export-ignore
/phpcs.xml.dist export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml.dist export-ignore
/test/ export-ignore
14 changes: 14 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Continuous Integration"

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

jobs:
ci:
uses: laminas/workflow-continuous-integration/.github/workflows/continuous-integration.yml@1.x

0 comments on commit d774137

Please sign in to comment.