Skip to content

Commit 2f35abf

Browse files
committed
Tests were added
1 parent 9f28f24 commit 2f35abf

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

.github/issue_template.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
### Expected Behavior
2+
3+
4+
### Actual Behavior
5+
6+
7+
### Steps to Reproduce the Problem
8+
9+
1.
10+
1.
11+
1.
12+
13+
### Specifications
14+
15+
- phpbb version:
16+
- recenttopics version:
17+

.github/pull_request_template.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
### Pull Request rules for this phpBB Extension repository:
2+
3+
* No PR will be accepted that would add a new language pack. (Corrections for the included language packs are welcome.)
4+
* No PR will be accepted that would add a new style template. (Corrections for prosilver are welcome.)
5+
* No PR will be accepted if the description is missing. This applies in particular to code changes.
6+
7+
This message does not automatically destroy itself after reading and must be removed manually. ^^

.github/workflows/tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Tests
2+
3+
on:
4+
push: # Run tests when commits are pushed to these branches in your repo,
5+
branches: # ... or remove this branches section to run tests on all your branches
6+
- main # Main production branch
7+
- master # Legacy or alternative main branch
8+
- dev/* # Any feature branches under "dev/", e.g., dev/new-feature
9+
10+
pull_request: # Run tests when pull requests are made on these branches in your repo,
11+
branches: # ... or remove this branches section to run tests on all your branches
12+
- main
13+
- master
14+
- dev/*
15+
16+
jobs:
17+
call-tests:
18+
name: Extension tests
19+
uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x
20+
with:
21+
EXTNAME: imcger/recenttopicsng # Your extension vendor/package name (required)
22+
RUN_MYSQL_JOBS: 0
23+
RUN_PGSQL_JOBS: 0
24+
RUN_MSSQL_JOBS: 0
25+
RUN_WINDOWS_JOBS: 0
26+
PRIMARY_PHP_VERSION: '8.4'

0 commit comments

Comments
 (0)