mirror of
https://gh.wpcy.net/https://github.com/SilverAssist/wp-github-updater.git
synced 2026-04-25 21:35:55 +08:00
- Remove phpunit.xml from .gitignore to make it available in CI - Add phpunit.xml to repository for consistent test configuration - Fix PHPUnit command syntax (remove --verbose, use --configuration=) - Improve debugging output in workflow - Ensure test configuration is available during CI execution
26 lines
281 B
Text
26 lines
281 B
Text
# Composer package files
|
|
/vendor/
|
|
composer.lock
|
|
|
|
# PHPUnit
|
|
# /phpunit.xml # Keep phpunit.xml for CI/CD workflow
|
|
/.phpunit.result.cache
|
|
|
|
# Code coverage
|
|
/coverage/
|
|
|
|
# IDE files
|
|
/.vscode/
|
|
/.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Cache files
|
|
.phpcs-cache
|