Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 19967d4

Browse files
committed
:octocat:
1 parent 8b3d723 commit 19967d4

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<!-- You can erase any parts of this template not applicable to your Pull Request. -->
2-
31
## Proposed changes
42

53
<!-- Describe your changes here to communicate to the maintainers why you'd like to include this pull request.
64
If it fixes a bug or resolves a feature request, be sure to link to that issue. -->
75

86

7+
<!-- You can erase any of the parts below that are not applicable to your Pull Request. -->
8+
99
## Types of changes
1010

1111
<!-- Put an `x` in the boxes that apply -->
@@ -15,6 +15,8 @@ What types of changes does your code introduce?
1515
- [ ] Bugfix (non-breaking change which fixes an issue)
1616
- [ ] New feature (non-breaking change which adds functionality)
1717
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
18+
- [ ] Documentation fix or enhancement (no code was touched)
19+
- [ ] Other (CI, dependencies, etc., please describe)
1820

1921

2022
## Checklist:
@@ -23,7 +25,7 @@ What types of changes does your code introduce?
2325
- [ ] I have added tests that prove my fix is effective or that my feature works
2426
- [ ] I have added necessary documentation (if appropriate)
2527
- [ ] Any dependent changes have been merged and published in downstream modules
26-
- [ ] Lint and unit tests pass locally with my changes
28+
- [ ] Static analysis and unit tests pass locally with my changes
2729

2830

2931
## Further comments

.github/workflows/ci.yml

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2-
# https://github.com/sebastianbergmann/phpunit/blob/master/.github/workflows/ci.yml
1+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
2+
# https://github.com/sebastianbergmann/phpunit/blob/main/.github/workflows/ci.yaml
33

44
name: "Continuous Integration"
55

@@ -11,6 +11,11 @@ on:
1111
branches:
1212
- main
1313

14+
env:
15+
PHP_EXTENSIONS: ast, curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
16+
PHP_INI_VALUES: memory_limit=-1, error_reporting=-1, display_errors=On
17+
18+
1419
jobs:
1520

1621
static-code-analysis:
@@ -37,9 +42,10 @@ jobs:
3742
uses: shivammathur/setup-php@v2
3843
with:
3944
php-version: ${{ matrix.php-version }}
45+
extensions: ${{ env.PHP_EXTENSIONS }}
46+
ini-values: ${{ env.PHP_INI_VALUES }}
4047
tools: pecl
4148
coverage: none
42-
extensions: ast, curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
4349

4450
- name: "Update dependencies with composer"
4551
uses: ramsey/composer-install@v3
@@ -72,8 +78,9 @@ jobs:
7278
uses: shivammathur/setup-php@v2
7379
with:
7480
php-version: ${{ matrix.php-version }}
81+
extensions: ${{ env.PHP_EXTENSIONS }}
82+
ini-values: ${{ env.PHP_INI_VALUES }}
7583
coverage: pcov
76-
extensions: curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
7784

7885
- name: "Install dependencies with composer"
7986
uses: ramsey/composer-install@v3
@@ -106,10 +113,11 @@ jobs:
106113
- name: "Install PHP"
107114
uses: shivammathur/setup-php@v2
108115
with:
109-
php-version: "8.1"
116+
php-version: "8.3"
117+
extensions: ${{ env.PHP_EXTENSIONS }}
118+
ini-values: ${{ env.PHP_INI_VALUES }}
110119
coverage: none
111120
tools: phpDocumentor
112-
extensions: curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
113121

114122
- name: "Build API docs"
115123
run: phpdoc --config=phpdoc.xml.dist
@@ -131,18 +139,9 @@ jobs:
131139
- name: "Checkout sources"
132140
uses: actions/checkout@v4
133141

134-
- name: "Install PHP"
135-
uses: shivammathur/setup-php@v2
136-
with:
137-
php-version: "8.1"
138-
coverage: none
139-
140142
- name: "Install Sphinx"
141143
run: pip install sphinx myst-parser sphinx-rtd-theme
142144

143-
- name: "Install dependencies with composer"
144-
uses: ramsey/composer-install@v3
145-
146145
- name: "Build manual"
147146
run: |
148147
cd docs

0 commit comments

Comments
 (0)