Skip to content

Commit dfa8096

Browse files
Chore: Update CI workflow to include type tests and unit tests, and add refactor test to composer.json
1 parent 07a326c commit dfa8096

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/run-tests.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,8 @@ jobs:
6060
- name: List Installed Dependencies
6161
run: composer show -D
6262

63-
- name: Fix PHP code style issues on Windows
64-
run: |
65-
if [[ "$RUNNER_OS" == "Windows" ]]; then
66-
composer lint
67-
fi
63+
- name: Type Tests
64+
run: composer test:types && composer test:type-coverage
6865

69-
- name: Execute tests
70-
run: composer test
66+
- name: Unit Tests
67+
run: composer test:unit

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"test:refactor": "rector --dry-run",
5757
"test": [
5858
"@test:lint",
59+
"@test:refactor",
5960
"@test:types",
6061
"@test:typos",
6162
"@test:type-coverage",

0 commit comments

Comments
 (0)