Skip to content

Commit b649aae

Browse files
committed
Added CI setup and PR templates
1 parent 75f46fc commit b649aae

File tree

5 files changed

+88
-0
lines changed

5 files changed

+88
-0
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @asantibanez

.github/ISSUE_TEMPLATE/bug_report.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
1. '...'
13+
2. '...'
14+
3. '...'
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Screenshots**
20+
If applicable, add screenshots to help explain your problem.
21+
22+
**Additional context**
23+
Add any other context about the problem here.
24+
25+
**Solution Ideas**
26+
Initial thoughts or details about how this could be fixed

.github/ISSUE_TEMPLATE/feature.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Feature
3+
about: New feature idea
4+
5+
---
6+
7+
### Summary
8+
What's the new feature about? What should it do?
9+
10+
### Proposal
11+
How should it work? API ideas?
12+
13+
### Additional Notes
14+
Reference links or comments

.github/PULL_REQUEST_TEMPLATE

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Summary
2+
3+
[Provide a summary of the change.]
4+
5+
## Issue
6+
7+
[If exists, provide a link to the corresponding issue(s).]
8+
9+
## Type of Change
10+
11+
- [ ] :rocket: New Feature
12+
- [ ] :bug: Bug Fix
13+
- [ ] :hammer: Refactor
14+
- [ ] :question: [Other]
15+
16+
## Screenshot/Video
17+
18+
[Provide a screenshot or video that describes the change if applicable]

.github/workflows/phpunit.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: PHPUnit
2+
3+
on: [push]
4+
5+
jobs:
6+
phpunit:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Cancel Previous Run
11+
uses: styfle/[email protected]
12+
with:
13+
access_token: ${{ github.token }}
14+
15+
- name: Setup PHP
16+
uses: shivammathur/setup-php@v2
17+
with:
18+
php-version: '7.4'
19+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, exif, imagick, bcmath
20+
coverage: none
21+
22+
- name: Checkout code
23+
uses: actions/checkout@v2
24+
25+
- name: Install Composer dependencies
26+
run: composer install --ignore-platform-reqs
27+
28+
- name: Run tests
29+
run: ./vendor/bin/phpunit

0 commit comments

Comments
 (0)